Examples: 1, 10, 25
What is an integer?
print(3+4)
What is 7?
4+5
What is 9?
This kind of loop only loops a certain number of times
What is a for loop?
a > b
What is a is greater than b?
1.2, 3.8, 10.7
What is a float?
print("3+4")
What is 3+4
3*4
What is 12?
What kind of loop continues always (for the length of the game)?
What is a while loop or forever loop?
a == b
What is a equals b?
Examples: "Name", "Hello world!", and "Today is Tuesday"
What is a String?
print("3"+"4")
What is 34?
12/4
What is 3?
What is a conditional?
a != b
x = ["apple", "banana", "cherry"]
What is an Array or List?
print("3"+4)
What is a syntax error?
12%5
What is 2?
for x in fruits:
print(x)
What is a for loop that prints each fruit?
a >= b
What is a is greater than or equal to b?
True or False
Boolean
# print(3+4)
What is nothing (a comment)?
3**2
i = 1
while i < 6:
print(i)
i += 1
What is a while loop that prints 1 to 5?
a > b or d < c
What is a is greater than b or d is less than c?