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

What do you use after the first 'if' when checking multiple conditions in Python?

elif

100

Why doesn't this work?

print "hello world"

There needs to be () for this to work

100

What is the ** symbol?

Exponent (Multiplies the number by itself a certain amount of times)

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

What does break do in a while loop?

It immediately stops the while loop not matter what's after it

300

Which is correct:

print("Hello" + 9)

print("Hello", 9)

print("Hello", 9)

300

How do you do square root?

First you import math at the top then you math.sqrt(..)

300

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

FRC

300

name EVERY instructor in the room

answers will vary

400

for i in range(1, 4):

    if i == 2:

        continue

    print(i)

1

3

400

How do you add a new line midstring?

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 = 2

print (x*5-3/1) 

7

400

Who taught us about gracious professionalism?

Woodie Flowers

400

what platform do we use for the music

apple music

500

What will this loop print? :

 num = 1  

  while True: 

    if num == 7:

          print('done')

 break

else:         

             print('not yet')

              num = num +1

not yet

not yet

not yet

not yet

not yet

not yet

done

(prints 'not yet' 6 times then 'done')

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

whats the drink we like from taco bell?

Baja BLAST