0
Concatenation of two string s
what is the result of hello+world ,it includes space or no space ,
5 ответов
+ 3
@Anuradha Please share the code then
+ 3
print has an additional parameter sep
print("hello"+"world")
helloworld
print("hello" + "new" + "world", sep = " ")
hello new world
+ 1
i got it now, its cheese+' shop's,. inside quotes there is a space
0
i was tried test in solo learn ,but its giving with space is correct answer
0
i have checked ,there is no space in code