What will be saved in the variable age
age= input("Please enter your age: ")
What is the user age entry.
This loop runs forever.
What is an infinite loop or what is a while True loop?
What data type will be saved in the variable age
age= input("Please enter your age: ")
What is a string?
This is the programming language used to build web pages and transfer information on the web.
What is HTML (Hyper Text Markup Language)?
This function returns returns a number rounded to ndigits
What is .round()?
If the variable 'gr' has "senior", what will be printed?
gr = input("What year of high school are you in? ")
if gr == "Freshman": print("Grade: 9")
elif gr == "Sophomore": print("Grade: 10")
elif gr == "Junior": print("Grade: 11")
elif gr == "Senior": print("Grade: 12")
else: print("Not in High School")
What is "["a", "c", "d"]?
Computers run on this number system.
What is Binary?
We use this type of statement to iterate through a collection of elements.
What is a for loop?
This string operator that indicates an escape character
What is \ (aka the escape character)?
Given the following:
sum = 0
for i in range(15, 21, 2):
sum = sum + i
print(sum)
What is 51?
A function that is use to iterate through a loop.
What is range()?
This symbol !=
What is Not Equal to.
What is output by the following program?

What is Rainbow Sunshine Storm.