Advertisement
Guest User

simomarti

a guest
Oct 14th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. count = 1
  2. n = int(input("Positive integer: "))
  3. for y in range (1, n + 1):
  4. while count <= n and y >= count:
  5. print(chr(123 - count), end="")
  6. count += 1
  7. count = 1
  8. print()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement