def to_lower(str):
    return str.lower()
list1=["HELLO", "WELCOME", "TO", "PYTHON"] 
list2=list(map(to_lower, list1))
print("List in lowercase characters is: ", list2)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: