Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

अजगर में जल्लाद खेल?

जल्लाद एक क्लासिक शब्द का खेल है जिसमें प्रतिभागियों को समय समाप्त होने से पहले जितना हो सके उतने गुप्त शब्दों का अनुमान लगाने की आवश्यकता होती है! इसलिए, एक बार में एक अक्षर, नए शब्द सीखने के लिए यह एक अच्छा खेल है!

इसलिए हम इस क्लासिक गेम "जल्लाद" के लिए पायथन लिपि लिखने जा रहे हैं।

#importing the time module
import time

#welcoming the user
name = input("What is your name? ")

print("Hello, " + name, "Time to play hangman!")

print ("")

#wait for 1 second
time.sleep(1)

print ("Start guessing...")
time.sleep(0.5)

#here we set the secret
word= ("Secret")
word = word.lower()

#creates an variable with an empty value
guesses = ''

#determine the number of turns
turns = 12

# Create a while loop

#check if the turns are more than zero
while turns > 0:

   # make a counter that starts with zero
   failed = 0

   # for every character in secret_word
   for char in word:

   # see if the character is in the players guess
   if char in guesses:

      # print then out the character
      print (char, )

   else:

      # if not found, print a dash
      print ("_",)

      # and increase the failed counter with one
      failed += 1

# if failed is equal to zero

# print You Won
if failed == 0:
   print ("You won" )

# exit the script
   break

print
# ask the user go guess a character
guess = input("guess a character:")

# set the players guess to guesses
guesses += guess

# if the guess is not found in the secret word
if guess not in word:

# turns counter decreases with 1 (now 9)
turns -= 1

# print wrong
print ("Wrong")

# how many turns are left
print("You have", + turns, 'more guesses' )

# if the turns are equal to zero
   if turns == 0:

   # print "You Loose"
   print ("You Loose")

आउटपुट

================== RESTART: C:\Python\Python361\hangman1.py ==================
What is your name? Raj
Hello, Raj Time to play hangman!

Start guessing...
_
_
_
_
_
_
guess a character:s
s
_
_
_
_
_
guess a character:h
Wrong
You have 11 more guesses
s
_
_
_
_
_
guess a character:e
s
e
_
_
e
_
guess a character:c
s
e
c
_
e
_
guess a character:r
s
e
c
r
e
_
guess a character:e
s
e
c
r
e
_
guess a character:t
s
e
c
r
e
t
You won
>>>

  1. पायथन में बाइनरी ट्री कलरिंग गेम

    मान लीजिए कि दो खिलाड़ी बाइनरी ट्री पर टर्न-आधारित गेम खेलते हैं। हमारे पास इस बाइनरी ट्री की जड़ है और ट्री में नोड्स की संख्या n है। यहां n विषम है, और प्रत्येक नोड का 1 से n तक का एक अलग मान है। सबसे पहले, पहला खिलाड़ी 1 <=x <=n के साथ एक मान x का नाम देता है, और दूसरा खिलाड़ी 1 <=y <=n के साथ एक

  1. कॉनवे का जीवन का खेल पायथन का उपयोग कर रहा है?

    लगभग 1970 में एक ब्रिटिश गणितज्ञ ने अपना गेम ऑफ लाइफ बनाया - जो मूल रूप से जैविक जीवों के एक उपनिवेश के अराजक लेकिन पैटर्न वाले विकास को दर्शाने वाले नियमों का एक समूह है। जीवन का खेल एक द्वि-आयामी ग्रिड है जिसमें जीवित और मृत कोशिकाएं होती हैं। जीवन के खेल के नियम अधिक जनसंख्या :एक कोशिका मर जात

  1. पायथन में टिंकर का उपयोग करके रंग खेल

    जीयूआई अनुप्रयोगों के विकास के लिए टिंकर बहुत लोकप्रिय और आसान है। tkinter का उपयोग करके आसानी से GUI गेम विकसित करें। यहां भी हम कलर गेम विकसित करने की कोशिश कर रहे हैं। इस गेम में खिलाड़ी को स्क्रीन पर दिखाई देने वाले शब्द का रंग दर्ज करना होता है और इसलिए स्कोर एक से बढ़ जाता है, इस गेम को खेलने