- 1
Como hacer para que el resultado de este código salga separado
age = int(input()) name = input() if age >= 18: print ("welcome" + name) else : print ("sorry")
2 Answers
0
I don't speak spanish, so I'm not sure if this is what you wanted to know.
print ("welcome " + name)
print ("welcome", name)
0
ok thank you very much