- I just want to remove all quotation marks from a string.
- I've tried using
.strip()
and a for loop and that doesn't work either. - What am I doing wrong?
- I know this question is similar to a few others on stack overflow, I looked at them, and they didn't give me a straight answer.
string = """Hi" how "are "you"""
string.replace('"',"")
print(string)