- Fork and Clone
Create a main.py and test your code with python3 main.py.
- Create a list named
studentscontaining some student names (strings). - Print out the second student's name.
- Print out the last student's name.
- Create a tuple named
foodscontaining the same number of foods (strings) as there are names in thestudentslist. - Use a
forloop to print out the string "food goes here is a good food".
- Using a
forloop, print just the last two food strings fromfoods.
- Create a dictionary named
home_towncontaining the keys ofcity,stateandpopulation. - Print a string with this format:
"I was born in city, state - population of population"
- Iterate over the key: value pairs in
home_townand print a string for each item, for example:
"city = Arcadia"
"state = California"
"population = 58000"
-
Create an empty list named
cohort. -
Using a
forloop, add one dictionary to thecohortlist for each student name. Each dictionary should have this shape:{ 'student': 'Tina', 'fav_food' 'Cheeseburger' } -
Iterate over
cohortprinting out each element.
- Using the list of
studentsand list comprehension, assign to a variable namedawesome_studentsa new list containing strings similar to this:["Tina is awesome!", "Fred is awesome!", "Wilma is awesome!"] - Iterate over
awesome_studentsprinting out each string.
- Using the tuple
foodsand list comprehension within aforloop, print each food string that contains the lettera.
