Cómo convertir la entrada en mayúsculas en Python

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