This data type holds integers
Function used to take input
What is input()?
Value of 2+3
What is 5?
The language that is based entirely on dictionaries
What is JSON?
The keyword used to declare a function
What is def?
Returned by type(3.4)
What is float?
The type that is returned by input()
What is String?
Value of ((False and True) or False or (True and False)) and False
What is False?
The function used to remove items from a list
The keyword used to end a function and output a value
What is return?
Returned by running 3*"rsp"
What is "rsprsprsp"?
Feature that changes the type of a variable
What is type casting?
Value of ((2*3+13-17)*0+3)*2
What is 6?
The function call used to access the 5th element of the list "stuffs"
What is stuffs[4]?
The highlighted aspect of this code
What is return type declaration location?
Returned when running (float)3 + "try"
Returned by the following code after inputting "X"
UPPERCASE
What is 1/3?
The output of this code
What is "Brian"?
The expected output of this code
What is False?
Stored in the variable qwerty after executing the following code
What is "ke p"?
The line in the following code that will throw an error
What is line 8?
Value of (2**5)/4 + ((18**3+1)//18)/9
What is 44?
The output of this code
What is "Efrain"?
There are two kinds, and it is an easy way to traverse a list
What is a loop?