Problem :
When I write print('')
or print("")
or print(""''"")
, Python doesn’t print the backslash symbol. Instead it errors for the first two and prints
''
for the third. What should I do to print a backslash?
Solution :
Problem :
When I write print('')
or print("")
or print(""''"")
, Python doesn’t print the backslash symbol. Instead it errors for the first two and prints
''
for the third. What should I do to print a backslash?
Solution :