+ 2
How do I turn a string into capital letters or the other way around? (Python)
For example: "hello world" (some process) "HELLO WORLD"
3 Answers
+ 5
Look into the upper() and lower() methods
+ 1
thanks!
+ 1
And remember that strings are immutable.