How can you declare a variable called x with the value of 1?
What is x = 1?
Can strings have spaces in them?
What is yes?
What is the output of the following code
print(1 + 1)
What is 2?
What is the error, if any, in the following code?
print(x,y)
What is no error?
How do you create comments in Python?
What is using """ or # to comment out line(s)?
What is the data type of 2.2?
What is a float?
What are the two symbols you can use to surround text to make it a string?
What is ' and "?
Which operation comes first in Python's order of operations?
What is *?
What is the error, if any, in the following code?
x = input("Input a number")print(x + 1)
What is not casting the input into an int?
Which of the following is an invalid name for a variable in Python?
_best_coder2ndCoderBESTCODERWhat is 2ndCoder?
Can the name of a variable be changed?
What is no?
What will be the output of "Steel" + "City"
Steel CitySteelCityErrorWhat is SteelCity?
What is the output of the following code
print(5 + 10 / 2)
What is 10.0?
Remember the order of operations!
Where can Python programs take input from?
What is the terminal or console?
Is code being used to run this Jeopardy game?
What is yes?
How can you cast the string "15" into an integer?
What is int("15")?
Which of the following are strings? There can be more than one string.
String"String"'String'"(String)"What is "String", 'String', and "(String)"?
No partial credit!
What is the operation for raising a value to a power in Python?
i.e. How would you calculate 2^10 in Python?
What is **?
What is the error, if any, in the following code?
x = input()
What is no error?
What is the error, if any, in the following code?
print("Thank " + "you" + " for", "playing!")
What is no errors?
What is the output of the following code?
print(int(6.6) / 2)
What is 3.0?
Does the following code run without any errors?
print("Hello')
What is no?
What is the output of the following code?
print(2 * 10 % 7)
What is 6?
What is the error, if any, in the following code?
x = int(input("Input your age"))print("You are " + age + "years old")
What is concatenation is impossible between integers and strings?
What is the output of the following code?
x = 5
x += 2x *= 2
print(x)
What is 14?