Question: use python IDLE when providing your solution and answer everything above 1. Compose a function print_lst that accepts a single list as an argument. It

use python IDLE when providing your solution and answer everything above
1. Compose a function print_lst that accepts a single list as an argument. It should print all of the contents of the list without using a loop. For example, \( \begin{array}{ll}\text { print_lst }([1,2,3,4]) & \text { \# output (via print): }[1,2,3,4] \\ \text { print_lst([]) } & \text { \# output (via print): }[]\end{array} \) 2. Compose a function print_lst_one_by_one that accepts a single list as an argument. It should print each element of the list on its own line, in the same order they appear in the list. If the list is empty, print nothing. For example, print_lst_one_by_one ([1,2,3,4]) # output (viaprint): #1 #2 #3 #4 3. Compose a function print_lst_reverse that accepts a single list as an argument. It should print each element of the list on its own line, in reverse order. If the list is empty, print nothing. For example, print_lst_one_by_one( [1,2,3,4]) \# output (via print): #4 #3 #2 #1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
