Output
Input
Variables
If Statements
Misc.
100

What does the output function look like in Python?

print( )
100

What does the function for input look like in Python?

input( )

100

What type of variable could be used to store (Taylor's Version)?

String

100

The condition must be ___ in order for the conditional statement to execute

True

100

Where did the singer Britney Spears get her start?

The Mickey Mouse Club

200

What command allows you to print to the next line?

"\n"

200

Any input will automatically be stored as what type of variable?

String

200

Type of variable that stores a decimal

Double/float

200

What symbol comes after the condition inside parentheses? 

Colon :

200

What artist sang the words “…is it me you’re looking for?”

Lionel Richie

300

True or false? To output a variable, the variable name needs " " around it?

False

300

What has to be written before an input function?

variable_name=

300

A boolean variable is the entity ...

True or false

300

What are the 3 types of conditional statements in Python?

If, If...Else, and Elif

300

According to Japanese legend, a sick person will recover if they fold 1,000 of what type of origami?

Crane

400
If you want to place *** in between 5 variables, what are you going to type at the end of the print function after listing the variables?

sep="***"

400

What function is used around input( ) if the user wants the input to be stored as a number?

int( )

400

What goes around a character's value when it is declared?

Single quotations '  '

400

Rewrite the line of code that is incorrect:

if (host="Martha Stewart):

    print("I am not sure she would be the best choice!")  

if(host=="Martha Stewart):

400

What is the only king in a deck of cards without a moustache?

King of Hearts

500

What will the following code execute?

print("Hello", "from\n", "the\n\n", "other", "\nside")

Hello from

the


other

side

500

Why is the following code not executing?

x=input("Enter in the number of times you have gone to Disney World")

if (x>5):

  print("Wow that's a lot!!")

The input is a string and the condition is looking for an number (integer/float/double)

500

Name the 5 types of variables

String

Character

Float/Double

Integer

Boolean

500

True or false: The statements inside a conditional statement have to be indented.

True

if (condition):

    statements

500

What year was the sound of a toilet flushing first aired on TV?

1974

M
e
n
u