how to convert input to uppercase in python

Solutions on MaxInterview for how to convert input to uppercase in python by the best coders in the world

showing results for - "how to convert input to uppercase in python"
Leo
12 Nov 2019
1string = str(input("Your name:- ")).upper()
2print(string)