- 3
Guys why it doesnt working ?
nome = (int(input("Qual seu nome : "))) print ('seja bem vindo',nome,'!')
2 Respuestas
+ 9
Just remove this (int) from line one.
Then ur code will run.
+ 1
You can put:
print('seja bem vindo %s!'%(int(input('Qual seu nome:\n'))))