myString = "Hello" myString.upper() #returns "HELLO" myString.lower() #returns "hello"
a = "Hello, World!" print(a.upper()) #output: HELLO, WORLD!