4 lines
73 B
Python
4 lines
73 B
Python
|
text = input('Please enter some text: ')
|
||
|
text = text.lower()
|
||
|
print(text)
|