the-honk/school/gcse/year 9/python challenges/15 - To Lower Case.py

2 lines
70 B
Python
Raw Normal View History

2021-05-28 20:38:55 +00:00
sentence = input('Please input a sentence')
print(str.lower(sentence))