Nested Loop Python

后端 未结 13 2251
一个人的身影
一个人的身影 2020-12-09 23:40
count = 1
for i in range(10):
    for j in range(0, i):
        print(count, end=\'\')
        count = count +1
    print()
input()

I am writing a

13条回答
  •  离开以前
    2020-12-10 00:40

    The simple mistake in your code is the placement of count = count + 1. It should be placed after the second for loop block. I have made a simple change in your own code to obtain the output you want.

        from __future__ import print_function
        count = 0
        for i in range(10):
            for j in range(0, i):
                print(count,end='')
            count = count +1
        print()
    

    This will give the output you want with the code you wrote. :)

提交回复
热议问题