uppercase
convert lower case to upper?
Geocube101
Use the .upper()
method
string1 = 'hello' string2 = string1.upper()
convert lower case to upper?
Use the .upper()
method
string1 = 'hello' string2 = string1.upper()
You can use
.upper()
for converting a string into all uppercase. You can also use.lower()
to convert it all to lowercase.please upvote or mark as answered if this was helpful