the-honk/gcse computer science/year 9/python challenges/15 - To Lower Case.py
2024-10-09 18:02:34 +01:00

2 lines
No EOL
70 B
Python

sentence = input('Please input a sentence')
print(str.lower(sentence))