Python Forum
Practicing using a "flag": please point in right direction
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Practicing using a "flag": please point in right direction
#1
I'm currently going through the Python Crash Course and I'm on Chapter 7. I'm attempting to use an active variable to control how long the loop runs.

prompt = "\nWhat is your age?"
prompt += "\n(Enter 'quit' when you are finished.)" 

active = True 
while active: 
    age = input(prompt) 
    
    if age == 'quit': 
        active = False 
    age = int(age)
    if age < 3:
        print("\nYour ticket is free!") 
    elif age < 12: 
        print("\nYour ticket is 10$!") 
    else:
        print("\nYour ticket is 15$!") 
        
The above works until I enter quit.
Error:
Traceback (most recent call last): File "parrot.py", line 10, in <module> age = int(age) ValueError: invalid literal for int() with base 10: 'quit'
I know that this is because I change age data type to an integer data type so I can use the comparison operators However, quit is not an int. I feel like maybe this is a matter of placement? I've tried different placements (before the if age == 'quit') but it's still not working. Could someone please point me in the right direction? Thank you!
Reply


Messages In This Thread
Practicing using a "flag": please point in right direction - by magsloo - May-09-2019, 07:58 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Big Grin Variable flag vs code outside of for loop?(Disregard) cubangt 2 1,233 Mar-16-2022, 08:54 PM
Last Post: cubangt
  Project Direction bclanton50 1 1,371 Jan-06-2022, 11:38 PM
Last Post: lucasbazan
Question How to understand the vector/direction mason321 0 1,149 Dec-14-2021, 10:57 PM
Last Post: mason321
  how to check for thread kill flag nanok66 1 2,232 May-09-2020, 10:06 PM
Last Post: nanok66
  Pointer in the right direction? Viking 5 2,806 Apr-22-2020, 06:14 PM
Last Post: Viking
  Check for a special characters in a column and flag it ayomayam 0 2,092 Feb-12-2020, 03:04 PM
Last Post: ayomayam
  Using a flag error blackjesus24 1 1,656 Jan-30-2020, 09:42 AM
Last Post: buran
  connecting the first point to the last point Matplotlib omar_mohsen 0 4,694 Jan-15-2020, 01:23 PM
Last Post: omar_mohsen
  Length and direction cosines of lines tarikrr 1 1,808 Nov-15-2019, 04:16 AM
Last Post: SheeppOSU
  Some direction needed Patriot1017 3 2,550 Sep-03-2019, 05:44 PM
Last Post: jefsummers

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020