I created dictionary in python like below:
flip= {'0': 'a"', '1':'b"', '2':'c"'}
But I don't want to use double quotes. I need elements with single quotes.
How can I do something like below? I was trying with \\
, \
, but it seems not to work.
Correct dict should look like below:
flip= {'0': 'a'', '1':'b'', '2':'c''}