0
My code is not working.
name=input("type your name") print("My name is" + name) email=input("type your email") print("My email is" + email) password=input("type your password") print("My password is" + password)
4 Answers
+ 7
Sivalingam Varmith ,
the output has the issue that it will be concatenated like: "My name isTom" (for an input of 'Tom') there should be a space inbetween.
you can correct this by adding an additional space or better use:
print("My name is", name)
+ 1
Check input is correct, each input in sololearn should be on a new line.