Convertir la corde en minuscules en python

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

#prints "hello"
ThePokedNoob