• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/18

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

18 Cards in this Set

  • Front
  • Back
Programs external to Python that contain additional functions are called
modules
Which statement is used to bring external functions into Python programs?
import
Reserved words used within the Python language that cannot be used for variable or function names are called
keywords
Values passed to a function via the parenthesis are called
arguments
When multiple values are separated by commas we say they are comma-_____
delimited
Which data type has only these two values: True and False
Boolean
Following are _____ operators:
<, >, <=, >=, ==, !=
comparison
We use Boolean values with comparison operators to form _____
conditions
Blocks of code that are executed over and over again are called
loops
One or more lines of code grouped together with the same amount of indentation is called
block
A _____ loop will repeat a block of code as long as the condition is true
while
Which statement jumps immediately out of a loop?
break
Which statement is used to execute a block of code only once when a condition is true?
if
Adding 1 to an integer is called _____ the value
incrementing
Subtracting 1 from an integer is called _____ the value
decrementing
The _____ function converts text into integer values
int()
The _____ function converts numbers into text values
str()
if, while, and break are called _____ control statements
flow