Question: Python L = [1,2,3,4,5,6] write a function to print out the list as the following: 1 1,2 1,2,3 1,2,3,4 1,2,3,4,5 1,2,3,4,5,6
Python
L = [1,2,3,4,5,6]
write a function to print out the list as the following:
1
1,2
1,2,3
1,2,3,4
1,2,3,4,5
1,2,3,4,5,6
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
