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