How to print the pattern112123123412345
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
for i in range(1,7): for j in range(1,i,1): print(j,end = ” “) print() It is the code for your Q…☺