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

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

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