Question: Convert the following for loops into an equivalent while loop. The end= specifies the end of line character which causes the newline to be suppressed
Convert the following for loops into an equivalent while loop. The end= specifies the end of line character which causes the newline to be suppressed that is normally printed. for i in range(1,3): for j in range(1,4): for k in range(1,5): print('*',end='') print('!',end='') print('',end='')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
