demo_string_upper.py:
a = "Hello, World!" print(a.upper())
➜ begtut>python demo_string_upper.py
HELLO, WORLD!