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 (in order)
What is start, stop, and step?
This function converts value to another data type
What is a type conversion function?
The value that is sent to the function when it is 'called'
What is an argument?
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?
Special handling of alpha order when comparing strings in Python
What is all upper case letters come before lowercase letters?
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 a chained conditionals?
Defining a function creates a ______ with the same name'
What is a variable?
The variable that changes each time the loop executes and controls when the loop finishes
What is the iteration variable?
This keyword is used to end the current iteration in a for loop (or a while loop), and continues to the next iteration
What is continue?
Name for a method call
What is an invocation?
What are three of the four 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?
The pattern of processing a string is called
What is traversal?
The syntax for calling a method is different from that of a function in what way?
What are methods are called by appending the method name to the variable name using the period as a delimiter(i.e. dot notation ) ?
Data structure which lets you create a sequence of any data type.
What is a tuple?