demo_string_lower.py:
a = "Hello, World!" print(a.lower())
C:\Users\My Name>python demo_string_lower.py
hello, world!