make all characters in list lowercase python code example
Example: how to convert list to all uppercase
#Capitalise list
c = ['Kenya','Uganda', 'Tanzania','Ethopia','Azerbaijan']
converted_list = [x.upper() for x in c]print(converted_list)print("Remember to clap :-)")