comment faire du texte minuscule en python

y = text = "HI THIS IS HUSSEIN ASADI FROM IRAN"

y = text.lower()
print(y)
husseinpenart