Konversi string ke huruf kecil di Python

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

#prints "hello"
ThePokedNoob