How do i print out a number triangle in python? -



How do i print out a number triangle in python? -

how print out number triangle in python using loop based program? not homework assignment or exercise book have been trying have not come close. triangle should print out looking this:

1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6

for in range(7): print (str(i) + " ")*i

output:

1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6

python

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -