1 / 4

What is the method to convert all characters of a string to lowercase?

text
=
"Hello
World!"
lower_text
=
text.
()
print(lower_text)
#
hello
world!