Advertisement
technotier

main.py

Dec 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. print('Please, input the number:')
  2. number = int(input())
  3. temp = number
  4.  
  5. while number > 0:
  6. count = temp
  7. while count > 0:
  8. print('*', end='')
  9. count -= 1
  10. print()
  11. number -= 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement