logo CodeStepByStep logo

print_list

Language/Type: Python lists

Write a function named print_list that accepts a list of integers as a parameter and prints them, one per line, in the format shown. Your code should work for a list of any size. For example, if a list named a contains the elements [32, 5, 27, -3, 2598], then the call of print_list(a) should produce the following output:

element [0] is 32
element [1] is 5
element [2] is 27
element [3] is -3
element [4] is 2598
Function: Write a Python function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.