Loops and conditionals
Prints and Strings
Operators
FIRST/Our team
low cort
100

Fill in the blank (its not if)

if color=="red":

    print("stop")

___ color =="green":

elif

100

Why doesn't this work?

print "hello world"

There needs to be () for this to work

100

What is the / symbol?

Division

100

What are our team colors?

Yellow and Blue

100

whats the school called

prospect high/PHS

200

what does != mean?

means not equal

200

What would this print? :

print('ha'*3)

hahaha

200

what is % symbol?

Modulus (returns the remainder)

200

What's the name of our team's robot?

Cart2cus

200

whats the coding website called?

online python and lego spike education

300

How do you make an infinite loop

while True

300

Which is correct:

print("Hello" + 9)

print("Hello", 9)

print("Hello", 9)

300

How do you print pi?

First you import math at the top then you print math.pi

import math

print(math.pi)

300

What is the name of the level of FIRST does our high school team compete in?

FRC

300

what platform do we use for the music

apple music

400

for i in range(1, 10, 2):

    print(i)

1

3

5

7

9

400

How do you add a new line midstring?

(pressing the enter key, 1 print statement = 2 lines)

add a '\n' inside the string at the place where you want the new line to be

400

what is the output for this equation?

x = 3

print (x*5/3+1) 

6
400

Who taught us about gracious professionalism?

Woodie Flowers

400

whats the drink we like from taco bell?

Baja BLAST

500

Debug the code (why won't it work and how do I make it work?)

while ask != no:

    print("Do you want to continue?")

    ask = input()

the variable ask needs to be defined before I use it

no has to have quotations marks since it would look like an undefined variable

500

what will this print statement do?:

hi = 'hello'

print('hi')

It will print 'hi' because hi is in quotes 

500

what is the output if the user types in 3 for the input num? is it 333 or 9? why?

num=input()

print(num*3)

333

because the input was never converted to an integer 

500

who is the camp lead?

Zahra

500

Name 1 of the FIRST core values (there's six)

Discovery, Fun, Inclusion, Impact, Innovation, Teamwork

M
e
n
u