0

I want to replace "" with ", as it screws with the json decoder

val = '''""what""'''
print(val) # ""what""
val.replace('""', '"')
print(val) # ""what""

Input ""what""
Desired output "what"
Thank you in advance

0 Answers0