The while loop which asks the user for another number will NOT stop even though there is an false statement saying otherwise. In the output menu, the while loop keeps repeating. How do I make it move on to next section of my code.
JavaScript
x
44
44
1
import random #this allows randomiser functions such as generating both the player and computers number to work.
2
3
play = True
4
print("Hello! Welcome to 13 in - to Win")
5
name = input("What is your name? ")
6
7
while play == True:
8
#print("The game starts here")
9
AI_num = random.randint(1,19) #Generate a Random Number between 1 and 19 for the computer.
10
Additional_Num = True
11
PTotal = 0
12
13
while Additional_Num == True:
14
Player_Num = random.randint(1,10)
15
PTotal = PTotal + Player_Num
16
17
print(name,"Got A",Player_Num)
18
print("Your Total is: ",PTotal) #Later add an input statement to ask user if they want to know their total
19
20
play_again = input("Would You Like Another Number? <Yes or No>")
21
22
if play_again == "Yes":
23
Additional_Num = True
24
else:
25
Additional_Num = False
26
print("AI got ",Additional_Num)
27
print(name,"Got ",Player_Num)
28
29
30
31
32
33
#print("13 in to Win Has Ended!")
34
35
play_again = input("Would you like to play again? <Yes or No>")
36
37
if play_again == "Yes":
38
play = True
39
40
else:
41
play = False
42
print("Bye for now!")
43
44
Advertisement
Answer
You forgot to add an extra tab between the if/else statement.
Python relies on the indentation (whitespace at the beginning of a line) to define the scope in the code. this might be confusing while other programming languages often use curly brackets for this purpose.
JavaScript
1
8
1
if play_again == "Yes":
2
Additional_Num = True
3
4
else:
5
Additional_Num = False
6
print("AI got ",Additional_Num)
7
print(name,"Got ",Player_Num)
8