Skip to content
Sign UpLog In
Profile icon

Ooof “ProjectBosco”

@OoofProjectBosc
Repls
Community
OoofProjectBosc
OoofProjectBosc
shared a Post
4 years ago
uppercase
convert lower case to upper?
guess number game
Python
rediar
rediar
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 helpful4 years ago
Geocube101
Geocube101
Use the .upper() method string1 = 'hello' string2 = string1.upper() `4 years ago