Horje
duplicate a list with lowercase in python Code Example
duplicate a list with lowercase in python
colors = ['Red', 'Blue', 'Green', 'Purple']
lower_colors = [ ]

for color in colors:
  lower_colors.append(color.lower())

print(lower_colors)

#output - ['red', 'blue', 'green', 'purple']




Python

Related
repl.it install packages python Code Example repl.it install packages python Code Example
Insert Multiple Images to Excel with Python Code Example Insert Multiple Images to Excel with Python Code Example
how to calculate division with remainder in python Code Example how to calculate division with remainder in python Code Example
picobot python Code Example picobot python Code Example
how to have framer read json timestamps Code Example how to have framer read json timestamps Code Example

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