• 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/4

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;

4 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)

parse error

error in the syntax of your program

can usually be traced back to missing punctuation;


'TokenError: EOF in multi-line statement'

type error

try to combine two objects that are not compatible

trying to add a string and an integer;


'TypeError: unsupported operand type(s) for FloorDiv: 'str' and 'int' on line 5'

name error

used a variable before it has a value

'NameError: name 'wait_time' is not defined on line 6'

value error

a parameter is passed in a function and the function is expecting a certain type, but you pass a different one

'ValueError: invalid literal for int() with base 10: '' on line: 4'