print("something")
what will you see?
What is something
Output? >>>a[100, 30, 20] >>>a
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? >>>a[100, 30, 20] >>>a[2]
What is 20
7//3
What is 2
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 for variable a and with the values 100, 20
What is >>> a[100, 20]
text with quote around it - like "hello"
What is string
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
month = 5 Is the month is a string or a variable?
what is a variable name
hello = 5.0 what data type is hello?
what is floating point or float
what type of variable is number?
what is Integer
print("hello" * "bye")
what is an error message
hello=5 what data type is hello?
What is an integer
print("a" * 5)
What is aaaaa
number = input("what is your name?")
what type is number?
what is a string