Fill in the blank (its not if)
if color=="red":
print("stop")
___ color =="green":
elif
Why doesn't this work?
print "hello world"
There needs to be () for this to work
What is the / symbol?
Division
What are our team colors?
Yellow and Blue
whats the school called
prospect high/PHS
what does != mean?
means not equal
What would this print? :
print('ha'*3)
hahaha
what is % symbol?
Modulus (returns the remainder)
What's the name of our team's robot?
Cart2cus
whats the coding website called?
online python and lego spike education
How do you make an infinite loop
while True
Which is correct:
print("Hello" + 9)
print("Hello", 9)
print("Hello", 9)
How do you print pi?
First you import math at the top then you print math.pi
import math
print(math.pi)
What is the name of the level of FIRST does our high school team compete in?
FRC
what platform do we use for the music
apple music
for i in range(1, 10, 2):
print(i)
1
3
5
7
9
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
what is the output for this equation?
x = 3
print (x*5/3+1)
Who taught us about gracious professionalism?
Woodie Flowers
whats the drink we like from taco bell?
Baja BLAST
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
what will this print statement do?:
hi = 'hello'
print('hi')
It will print 'hi' because hi is in quotes
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
who is the camp lead?
Zahra
Name 1 of the FIRST core values (there's six)
Discovery, Fun, Inclusion, Impact, Innovation, Teamwork