Tomando a entrada de string do usuário em python com tentativa, exceto
try:
User_Name = input("What is your name:- ")
print("Hi "+User_Name+"It's me python")
except:
print("The user Name Is incorrect")
Programmer of empires