Posts

kuch dil see.....

kuch pal aase bhi joo bata na sake bas dil mai hi rah jaye ....dhadkan ki tarha..... pata hoo sabkoo lakin mahsoos hoo bas tum koo... kuch bate aasi joo bas juba pe rah jaye.....saasoo ki tarhaa.. pata hoo sabkoo lakin mahsoos hoo bas tum koo... dil kabhi kuch aasi rahoo pe le jata hai ... jaha rasta hai par manzil nahi.. jaha saase hai par zindagi nahi... jaha koshishe hai par uummide nahi.. bas tumhari saase aur dhadkan ... joo chah kar bhi rukti nahi......... bas chalti jaati hai .... ek banjare ki tarha jise jaha kaahi too hai aur kahi bhi nahi..... kuch dil seee.....
The below Python code simulate the Game , we used to play in childhood days.... where we take a book and just open some random page and take last digit of page number as our score....  import random def book_crick():     total = 0     Player_name = input("please Enter your name ")     score = 1     while(score != 0):         num1 = random.randint(1,300)         score = num1 % 10         if(score > 6):             score = 6         print(score)         total = total + score     print("total score of " + Player_name,total) def start_Play():     print("Lets start the book cricker")     book_crick()     replay = input('do y...