from turtle import * # Variables? # placeholder for information # Advantages: # short way of refering to a value # way of refering to a value many times # (ex: prompt user for their name and reuse their name many times)\ # way to keep track of values over time # declaring and initializing a variable score = 0 age = int(raw_input("What's your age? ")) lives = 3 initials = "NB" name = "Julio" # variables can hold values of different types # integer (whole number) # string (text) # float (decimal number) # conditional if(age >= 18): print("You can vote!") want_to_vote = raw_input("Do you want to vote? ") if(want_to_vote == "yes"): print("Here's your voter's guide") else: print("That's not good!") elif(age >= 14): print("I think you're in high school") #mainloop()