What do you call an expression that is either true or false?
What is Boolean?
"A 'chunk' of code that you can use over and over again."
What is a function?
A segment of a string is called
What is a slice?
Three logical operators
What is and, or and not?
Three arguments for range function (in order)
What is start, stop, and step?
This operator finds the quotient
What is // operator?
What is an function call /function execution?
The process of executing the body of the loop over and over again is called
What is an iteration?
The order statements are executed in a program
What is the flow of execution?
The variable listed inside the parentheses in the function definition
What is a parameter?
The key word, usually used within a function body, that allows you to modify a variable defined outside of this function
What global?
How is accessing functions from an imported module different from using the built-in functions?
What is using the dot notation?
First line of a function
What is a header?
Two of the string properties
What is they are: a sequence of characters, surrounded by single or double quotes, and immutability?
Code that eliminates the new line in a print statement
What is end=" "?
Term describing situation where more than two branches are needed in a flow chart
What is conditional statements?
These two operators are executed Right-to-Left
What is ** and =?
_______ changes each time the loop executes and controls when the loop finishes
What is the iteration variable?
This keyword is used to end the loop and proceed to next line after it
What is break?
This operator finds the remainder
What is % operator?
Name 3 attributes of functions
What is They take arguments, some are built-in, some require importing, they have return values?
This statement is called an indefinite loop.
What is a while loop?
User input is always of ________ data type
String
Name 3 properties of lists
They are objects, they are mutable, they can contain different data types ?
Data structure which lets you create a sequence of any data type.
What is a list?