As you know that python support both ' and " for string like
a = 'str'
b = "str"
If I want to represent the symbol ", I can use:
a = '"'
However, I don't want to use ', is there any way? In java, which does not allow ' for string representing, I can use:
a = "\""
but this escape won't work in python
print("\"") # >>> \"
Thanks
print("\"")prints.\"instead of"on miner"\"", can I do this with raw string?r"",'"', and"".