get question mark from a word + python code example
Example: get question mark from a word + python
s = "Is This It? Nope, that's fine"
'?' in s[:-1].replace('? ','')
s = "Is This It? Nope, that's fine"
'?' in s[:-1].replace('? ','')