print("something")
what will you see?
What is something
Output?
list = [100, 30, 20]
for i in list:
print(i)
What is 100, 30, 20
2*4.0
What is 8.0
Print() what is wrong?
What is capital letter P
5 < 3
What is False
print(something)
what will I get?
what is an error message
Output?
list = [100, 30, 20]
print(list[2])
What is 20
7%3
What is 1
hello = input(what is your name?)
what is the error?
What is no quotes around what is your name
5 > 3
What is True
print("45" + "22")
what will you see?
what is 4522
Create code for variable a and with an int value of 100
What is a = 100
Create a class named myClass
class myClass:
hello="5" what data type is hello?
what is a string
True and False are a data type. What is it called?
What is boolean
print(45 + 25)
what will I see?
what is 70
output?
x= "greengreengreen"
x = " "
print("greengreengreen")
What is greengreengreen
what is Object-Oriented Programming
hello = 5.0 what data type is hello?
what is floating point or float
what type of variable is number?
what is Integer
What will happen
print("hello" * "bye")
what is an error message
Double Jeopardy!!! Fill in the syntax:
a = ['spam' , 'eggs' , 100 , 1234] >>> ???????? >>> a (outcome is [spam, eggs, 123, 1234])
What is a[2] = a[2] + 23
What does POP stand for
What is Procedure-Based Programming
print("don't let nobody tear you down")
What is don't let nobody tear you down
number = input("what is your name?")
what type is number?
what is a string