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