So konvertieren Sie die Eingabe in Großbuchstaben in Python

string = str(input("Your name:- ")).upper()
print(string)
Programmer of empires