Nehmen Sie die String -Eingabe vom Benutzer in Python mit Ausnahme des Versuchs

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