0 of 4 questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
Your time:
Time has elapsed
Good work attempting the practice problems!
Please leave a comment below if you require any clarifications or send an email to [email protected] if you have any comments about this quiz.
You have completed this lesson!
Write a python program that iterates over a list and prints all the elements of the list?
Given:
a = [4,12,43.3,19,”LeeksAndPotatoes” ]
This response will be reviewed and graded after submission.
Given a set ([3, 14, 53, 44, 25]), iterate over its values and display them on the screen.
This response will be reviewed and graded after submission.
Write a python program that iterates through a list?
Given:
my_list = [4, 7, 0, 3]
This response will be reviewed and graded after submission.
Given a dictionary, display all its keys on screen using an iterator.
heroes1 = {“Wayne” : “Batman”, “Barry” : “Flash”, “Clark” : “Superman”}
This response will be reviewed and graded after submission.