demo_ref_string_lower.py:
txt = "Hello my FRIENDS" x = txt.lower() print(x)
C:\Users\My Name>python demo_string_lower.py
hello my friends