Convierta la cuerda en minúsculas en Python

str = 'HELLO'
print(str.lower())

#prints "hello"
ThePokedNoob