We're a place where coders share, stay up-to-date and grow their careers.
This was quite a simple one so I decided to spice it up with emoji! Also, next-gen sleep simulation at the end.
Code:
# -*- coding: UTF-8 -*- def countSheep(sheepToCount): sheepString = "" outputString = "" for i in range(sheepToCount): sheepString += "🐑 " outputString += "{}... ".format(sheepString) outputString +="ZZZzzzzzzz" print(outputString) countSheep(5)
Output:
🐑 ... 🐑 🐑 ... 🐑 🐑 🐑 ... 🐑 🐑 🐑 🐑 ... 🐑 🐑 🐑 🐑 🐑 ... ZZZzzzzzzz
This was quite a simple one so I decided to spice it up with emoji! Also, next-gen sleep simulation at the end.
Code:
Output: