I don't see why the following Python code prints out a sentence containing UPPER letters... Please explain! :)
def lower(text):
text = text.lower()
example = "This sentence has BIG LETTERS."
lower(example)
print(example)
Output will be:
This sentence has BIG LETTERS.