The upper()
method in Python is used to return a string, with all the characters of the string calling the method in uppercase.
string.upper()
This method does not require any parameters.
x = "The charachters in this string will become uppercase."x = x.upper()print(x)