Created
February 22, 2020 08:32
-
-
Save HammadMaqbool/87bd243d333eadf323b3af067f44670c to your computer and use it in GitHub Desktop.
This gist contain python based number guess game
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
Comp_guess_number = random.randint(1,5) | |
total_number_of_Attempts = 3 | |
cuurent_attempt =1 | |
while(cuurent_attempt<=total_number_of_Attempts): | |
if cuurent_attempt == total_number_of_Attempts: | |
print("This is last attempt") | |
User_guess = int(input("Enter your guess this is attempt number "+str(cuurent_attempt)+"\n")) | |
cuurent_attempt=cuurent_attempt+1 | |
if User_guess>Comp_guess_number: | |
if cuurent_attempt == total_number_of_Attempts+1: | |
print("This was last attempt you failed game over!\n Number was "+str(Comp_guess_number)) | |
else: | |
print("Try small number") | |
continue | |
elif User_guess<Comp_guess_number: | |
if cuurent_attempt == total_number_of_Attempts+1: | |
print("This was last attempt you failed game over!\n Number was "+str(Comp_guess_number)) | |
else: | |
print("Try large number") | |
continue | |
else: | |
print("Congratulations Number matched in "+str(cuurent_attempt-1)+" attempts") | |
break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment