how to change the string to uppercase in python code example
Example 1: uppercase string python
string.lower()
string.upper()
Example 2: from uppercase to lowercase python
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
string.lower()
string.upper()
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())