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
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