1 / 5

문자열의 모든 문자를 소문자로 변환하는 메소드는 무엇인가요?

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