rediarYou 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 helpful4 years ago
Geocube101Use the .upper() method
string1 = 'hello'
string2 = string1.upper()
`4 years ago