Answers for "python use for loop to create list"

0

create new list with for loop python

# Creating a new list
cities = ['new york city', 'mountain view', 'chicago', 'los angeles']
capitalized_cities = []

for city in cities:
    capitalized_cities.append(city.title())
    
print(capitalized_cities)

# output - ['New York City', 'Mountain View', 'Chicago', 'Los Angeles']
Posted by: Guest on December-25-2021
0

python how to loop in a list

fruits = ["apple", "banana", "strawberry"]

for fruit in fruits:
  print(fruit)
  #This "for fruit in fruits" gets every item in order from that list and does something with it
  #for example I print the fruit
  #note: This loop will only end when there aren't any items left in the list
  		 #example: After strawberry there isn't anything else soo the loop ends
#output: apple
		 #banana
  		 #stawberry
Posted by: Guest on October-13-2021

Code answers related to "python use for loop to create list"

Python Answers by Framework

Browse Popular Code Answers by Language