Vocabulary Flashcards
To learn the vocabulary used in Introductory Python Programming
Argument or Parameter
Data that a function or statement needs in order to operate
Assignment
Gives or assigns a value to a variable
Section of code which is grouped together through Indentation
Block or Suite
Translates a program written in a high-level language into a low-level language so it can execute.
Compiler
Conditional or Conditional Statement
Statement that contains an if or if/else or if/elif/else. Used to determine a True or False condition.
The process of identifying and rectifying errors within a program.
Debugging
def
Defines a function.
Python code that produces a value of any data type.
Expression
float
A floating point number, a number with a decimal value
for loop
A statement that iterates over an iterable object, assigning each element to a local variable for use by the following block
function
A named sequence of code that has a specific purpose and can utilize arguments.
function call
An invocation of a function with arguments.
Executes a block of code once when a condition is true.
if statement
Cannot be modified after its created.
immutable
import
Used to import libraries whose functions or variables can then be used in the current program.