+ 1
How to get space while we add two strings? Example: print( "HELLO"+"FREINDS").
3 Antworten
+ 5
print("Hello " + "Friends")
print("Hello" + " Friends")
print("Hello" + " " + "Friends")
+ 2
In Python3, this should work too,
print ("Hello" , "friends!")
+ 1
Thanks