just starting my journey with python. I would like to create a simple program that will take the input from the user and then do smth with it. But I am wondering what would happen if they put too many words. The error comes up and I cant get around with it.
name, surname = input("Full name: ").split()
try:
print("Hello", name)
print("Your login is:", surname + "ing")
except ValueError:
print("Please type your Full name only!") #user type 3 words instead of 2