0
Is it nessesary to include “\” in a code I can still code without it For example: print('predo\'s shoe is too big')
Regarding to backslash
2 odpowiedzi
+ 3
Assuming youre speaking about Python. In that case, you can use the two different quotes, the double quotes " and the single quotes '
With that being said you can mix and match as you see fit:
print("predo's shoe is too big")
is perfectly acceptable and its more readable
+ 1
After the given way the usage of \ may be the easiest way.