simeonshopov

Count sheep

Nov 20th, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. sheep = int(input())
  2. murmur = ''
  3.  
  4. for i in range(1, sheep + 1):
  5.   murmur += f'{i} sheep...'
  6.  
  7. print(murmur)
Advertisement
Add Comment
Please, Sign In to add comment