I want to add single backslash element to my list. I used print("\\")
and it printed single backslash; however, when I try to add "\\" to my list, it adds double backslash. How can I solve this problem?
You can see the code below:
signs=["+","x","÷","=","/","\\","$","€","£","@","*","!","#",":",";","&","-","(",")","_","'","\"",".",",","?"] print("Signs:",signs)
I use the Python 3.7.3 IDLE as IDE.
From now, thanks for your attention!