I’m a beginner currently working on a small python project. It’s a dice game in which there is player 1 and player 2. Players take turns to roll the dice and a game is 10 rounds in total(5 rounds for each player). The player with the highest number of points wins.
I am trying to validate the first input so that when for example, the player enters a number instead of “Higher” or “Lower”, the program should respond with ‘Invalid input, please respond with “Higher” or “Lower”’.
Here’s my code so far
JavaScript
x
69
69
1
import random
2
3
goAgain = "y"
4
activePlayer = 1
5
player1Score = 0
6
player2Score = 0
7
maxGuesses = 9
8
while (goAgain == "y"):
9
randNum = random.randint(1, 10)
10
print(randNum)
11
storedAnswer = input("Will you roll higher or lower?: ")
12
while(storedAnswer.strip() != 'higher' or storedAnswer.strip() != 'lower'):
13
print('Invalid input, please respond with "Higher" or "Lower"')
14
storedAnswer = input("Will you roll higher or lower?: ")
15
16
randNum2 = random.randint(1, 10)
17
print(randNum2)
18
if(storedAnswer.strip() == "lower" and randNum2 < randNum):
19
if(activePlayer == 1):
20
player1Score+=1
21
else:
22
player2Score+=1
23
print("You Win!")
24
maxGuesses+=1
25
# print(player1Score)
26
# print(player2Score)
27
elif (storedAnswer.strip() == "lower" and randNum2 > randNum):
28
print("You Lose!")
29
maxGuesses+=1
30
# print(player1Score)
31
# print(player2Score)
32
elif (storedAnswer.strip() == "higher" and randNum2 > randNum):
33
if(activePlayer == 1):
34
player1Score+=1
35
else:
36
player2Score+=1
37
print("You Win!")
38
maxGuesses+=1
39
# print(player1Score)
40
# print(player2Score)
41
elif (storedAnswer.strip() == "higher" and randNum2 < randNum):
42
print("You Lose!")
43
maxGuesses+=1
44
# print(player1Score)
45
# print(player2Score)
46
elif(randNum2 == randNum):
47
print("Draw!")
48
maxGuesses+=1
49
50
print(player1Score)
51
print(player2Score)
52
53
54
if(activePlayer == 1):
55
activePlayer = 2
56
else:
57
activePlayer = 1
58
59
if(maxGuesses == 10):
60
if(player1Score > player2Score):
61
print("Player 1 wins!")
62
elif(player2Score > player1Score):
63
print("Player 2 wins!")
64
else:
65
print("DRAW!")
66
break
67
else:
68
goAgain = input("Do you want to play again: ")
69
The problem that occurs is that instead it print ‘invalid input’ regardless of whether the condition is true or not.
Advertisement
Answer
A value is always not equal one or another value.
JavaScript
1
5
1
answer = input("Will you roll higher or lower?: ")
2
while answer.strip() not in ['higher', 'lower']:
3
print('Invalid input, please respond with "Higher" or "Lower"')
4
answer = input("Will you roll higher or lower?: ")
5