Full example
This commit is contained in:
parent
0f936057dc
commit
8be959c68f
|
@ -0,0 +1,33 @@
|
||||||
|
import random
|
||||||
|
random.seed()
|
||||||
|
|
||||||
|
number = random.randrange(100, 999)
|
||||||
|
number = list(str(number))
|
||||||
|
guesses = 0
|
||||||
|
while True:
|
||||||
|
|
||||||
|
if guesses == 5:
|
||||||
|
print("You loose!")
|
||||||
|
for value in number:
|
||||||
|
print(value, end=" ")
|
||||||
|
break
|
||||||
|
hint = [" ", " ", " "]
|
||||||
|
guess = input("Enter a three digit number:")
|
||||||
|
while len(guess) != 3:
|
||||||
|
guess = input("Enter a three digit number:")
|
||||||
|
|
||||||
|
guess = list(guess)
|
||||||
|
if guess == number:
|
||||||
|
print("You win!")
|
||||||
|
break
|
||||||
|
for index, value in enumerate(guess):
|
||||||
|
print(value, end=" ")
|
||||||
|
if value in number:
|
||||||
|
hint[index] = "P"
|
||||||
|
print("")
|
||||||
|
for index, value in enumerate(guess):
|
||||||
|
if number[index] == value:
|
||||||
|
hint[index] = "F"
|
||||||
|
print(hint[index], end=" ")
|
||||||
|
guesses += 1
|
||||||
|
print("\n")
|
Loading…
Reference in New Issue