DEV Community

Discussion on: Daily Challenge #46 - ???

Collapse
 
matrossuch profile image
Mat-R-Such

Python

def remove_(text):  return text.replace('?','')

print(remove_('He?l?lo?'))