

InterviewSolution
Saved Bookmarks
1. |
How to print the pattern112123123412345 |
Answer» for i in range(1,7): for j in range(1,i,1): print(j,end = " ") print() It is the code for your Q...☺ | |