Horje
how to convert list to all uppercase Code 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 :-)")
Source: medium.com




Python

Related
scipy cosine similarity Code Example scipy cosine similarity Code Example
else if python Code Example else if python Code Example
reorder list python Code Example reorder list python Code Example
remove column by index Code Example remove column by index Code Example
autopytoexe Code Example autopytoexe Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8