+ 1
Do we really need "+"?
doesn't seems like we need a "+" in there. u can just put: Print("Hello, World") and it will be the same. does anyone understand why?
2 Réponses
+ 1
For example :
a='Hello'
b='World'
c=a+b
print(c)
you will get :'HelloWorld'