Name 3 Python data types
What is (String, int, boolean, float, list, tuple, dictionary)
Command used to ask the user a question
What is Input?
name a command used to convert a variable from text to number.
What is int()?
What is a variable?
What application do we use for coding?
Python Idle
The datatype name for text
What is string?
Command used to give an answer to a question
What is print?
Name a command to convert a number to text
What is str()
What symbol will multiply numbers?
*
What does an empty print() statement do when ran?
Skips a line
The data type for 3.56.
What is float
Two place the print command can output.
What is file and screen?
The datatype a variables content must be to print to the screen.
What is text or string?
What is a module?
A library of functions you can import to use in your programs.
What 3 commands are use for conditions?
if, elif, else
What is 53?
Checks if the two values are equal and returns true or false
What does the == operator do?
The datatype a variable's content must be to perform addition or other calculations.
A condition is:
A statement that is either True or False
["Apple", "Baby", "Dinosaur", "2934"]
What is the index of Baby?
1
The datatype of 5
What is integer?
The character that indicates a comment in Python
What is hashtag #?
Command used to generate a random number
what is Random.randint()?
What symbol comes after an if statement?
:
What commands create additional options with an if statement?
elif statement or else