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 program that should have the output that looks like this.
1
22
333
4444
55555
666666
7777777
88888888
999999999
With the above code I am pretty close, but the way my count is working it just literally counts up and up. I just need help getting it to only count to 9 but display like above. Thanks.