I coded a program that is meant to repeat itself over and over until the to_continue loop is broken by the input “N”. However, it didn’t seem to work.
JavaScript
x
16
16
1
phone_or_tablet=int(input("Phone or Tablet 1/2 "))
2
while phone_or_tablet not in [1,2]:
3
print("Error")
4
phone_or_tablet=int(input("Phone or Tablet 1/2 "))
5
else:
6
if phone_or_tablet == 1:
7
description=int(input("Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 "))
8
while description not in range (1,7,1):
9
print("Error")
10
description=int(input("Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 "))
11
#some other programs (scroll down for the whole program)
12
print(sum(price))
13
to_continue=input("Continue? Y/N ")
14
while to_continue.capitalize() == "Y":
15
phone_or_tablet=int(input("Phone or Tablet 1/2 "))
16
Output:
JavaScript
1
8
1
Phone or Tablet 1/2 1
2
Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 1
3
#some other stuff
4
49.98
5
Continue? Y/N Y
6
Phone or Tablet 1/2 1
7
Phone or Tablet 1/2
8
whilst I meant for it to output
JavaScript
1
8
1
Phone or Tablet 1/2 1
2
Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 1
3
#some other stuff
4
49.98
5
Continue? Y/N Y
6
Phone or Tablet 1/2 1
7
Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 1
8
Full program if that’s helpful:
JavaScript
1
55
55
1
typelst=["Compact", "Clam Shell", "Robo5-in", "Robo6-in", "Y-Standard", "Y-Deluxe"]
2
pricelst=[29.99,49.99,199.99,499.99,549.99,649.99]
3
typelst2=["Robo-8in", "Robo-10in", "Y-standard", "Y-deluxe"]
4
pricelst2=[149.99,299.99,499.99,599.99]
5
price=[]
6
phone_or_tablet=int(input("Phone or Tablet 1/2 "))
7
while phone_or_tablet not in [1,2]:
8
print("Error")
9
phone_or_tablet=int(input("Phone or Tablet 1/2 "))
10
else:
11
if phone_or_tablet == 1:
12
description=int(input("Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 "))
13
while description not in range (1,7,1):
14
print("Error")
15
description=int(input("Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 "))
16
else:
17
price.append(pricelst[description-1])
18
sim_card=int(input("SIM card free or PAYG? 1/2 "))
19
while sim_card not in range (1,3,1):
20
print("Error")
21
sim_card=input(int("SIM card none, free or PAYG? 0/1/2 "))
22
else:
23
if sim_card == 2:
24
price.append(9.99)
25
elif phone_or_tablet == 2:
26
description=int(input("Robo-8in, Robo-10in, Y-standard or Y-deluxe? 1/2/3/4 "))
27
while description not in range (1,5,1):
28
print("Error")
29
description=int(input("Robo-8in, Robo-10in, Y-standard or Y-deluxe? 1/2/3/4 "))
30
else:
31
price.append(pricelst2[description-1])
32
case=int(input("Standard or Luxury case? 1/2 "))
33
while case not in range (0,3,1):
34
print("Error")
35
case=int(input("Standard or Luxury case? 1/2 "))
36
else:
37
if case==2:
38
price.append(50)
39
charger=int(input("Car, Home charger or both? 1/2/3 "))
40
while charger not in range (0,4,1):
41
print("Error")
42
charger=int(input("Car, Home charger or both? 1/2/3 "))
43
else:
44
if charger==1:
45
price.append(19.99)
46
elif charger==2:
47
price.append(15.99)
48
print(price)
49
else:
50
price.append(35.98)
51
print(sum(price))
52
to_continue=input("Continue? Y/N ")
53
while to_continue.capitalize() == "Y":
54
phone_or_tablet=int(input("Phone or Tablet 1/2 "))
55
Any help would be deeply appreciated :) Please comment if any of the explanations are unclear or if you need further details
Advertisement
Answer
You have to wrap the whole program logic in one loop.
JavaScript
1
56
56
1
while True:
2
typelst=["Compact", "Clam Shell", "Robo5-in", "Robo6-in", "Y-Standard", "Y-Deluxe"]
3
pricelst=[29.99,49.99,199.99,499.99,549.99,649.99]
4
typelst2=["Robo-8in", "Robo-10in", "Y-standard", "Y-deluxe"]
5
pricelst2=[149.99,299.99,499.99,599.99]
6
price=[]
7
phone_or_tablet=int(input("Phone or Tablet 1/2 "))
8
while phone_or_tablet not in [1,2]:
9
print("Error")
10
phone_or_tablet=int(input("Phone or Tablet 1/2 "))
11
else:
12
if phone_or_tablet == 1:
13
description=int(input("Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 "))
14
while description not in range (1,7,1):
15
print("Error")
16
description=int(input("Compact, Clam Shell, Robo5-in, Robo6-in, Y-Standard or Y-Deluxe? 1/2/3/4/5/6 "))
17
else:
18
price.append(pricelst[description-1])
19
sim_card=int(input("SIM card free or PAYG? 1/2 "))
20
while sim_card not in range (1,3,1):
21
print("Error")
22
sim_card=input(int("SIM card none, free or PAYG? 0/1/2 "))
23
else:
24
if sim_card == 2:
25
price.append(9.99)
26
elif phone_or_tablet == 2:
27
description=int(input("Robo-8in, Robo-10in, Y-standard or Y-deluxe? 1/2/3/4 "))
28
while description not in range (1,5,1):
29
print("Error")
30
description=int(input("Robo-8in, Robo-10in, Y-standard or Y-deluxe? 1/2/3/4 "))
31
else:
32
price.append(pricelst2[description-1])
33
case=int(input("Standard or Luxury case? 1/2 "))
34
while case not in range (0,3,1):
35
print("Error")
36
case=int(input("Standard or Luxury case? 1/2 "))
37
else:
38
if case==2:
39
price.append(50)
40
charger=int(input("Car, Home charger or both? 1/2/3 "))
41
while charger not in range (0,4,1):
42
print("Error")
43
charger=int(input("Car, Home charger or both? 1/2/3 "))
44
else:
45
if charger==1:
46
price.append(19.99)
47
elif charger==2:
48
price.append(15.99)
49
print(price)
50
else:
51
price.append(35.98)
52
print(sum(price))
53
to_continue=input("Continue? Y/N ")
54
if to_continue.capitalize() == "N":
55
break
56