0
How do I put a “ in ”” ?
I want my code to have this print(“ “ “ )kind of thing https://code.sololearn.com/cfqm4yZT26cy/?ref=app
4 Answers
+ 1
Timothy
To print quotations inside print use backslash .
>>>print("This is a \" word\" ")
This is a "word".
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2274/
0
https://code.sololearn.com/c2AEm9WOLmUd/?ref=app
support the answer if you got your problem solved.
0
print(" " ") wrong syntax we can use print (" \" ") instead for the same results as i did it in line 130 of your code 👍
0
That doesn’t work