_str = "Hello World!" print(_str.upper()) # HELLO, WORLD! print(_str.lower()) # hello, world! print(_str.swapcase()) # hELLO wORLD!