cara mengubah input menjadi huruf besar di python

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