# Program to convert Alphanumeric characters to lowercase text= "Its 2:00PM IST in India" text2="HELLO WORLD" print('Original String: ',text) print('Lowercase String: ',text.lower())