Codewars logo

If you can't sleep, just count sheep!!

By Lochard | As a newbie programmer | 8 Aug 2023


DESCRIPTION:

If you can't sleep, just count sheep!!

 

Task:

Given a non-negative integer, 3 for example, return a string with a murmur: "1 sheep...2 sheep...3 sheep...". Input will always be valid, i.e. no negative integers.

def count_sheep( n ):
    return "".join( [ str( i ) + " sheep..." for i in range( 1, n + 1 ) ] )

How do you rate this article?

1


Lochard
Lochard

20240228 Arrived in the UK for about 2 week. All my fears persist. Some are even getting worse. https://github.com/locharp/asylum_diary/


As a newbie programmer
As a newbie programmer

Sharing entry level codes. My snippets on GitHub https://github.com/locharp/code-snippets

Publish0x

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.