demo_string_upper.py:
a = "Hello, World!" print(a.upper())
C:\Users\My Name>python demo_string_upper.py
HELLO, WORLD!