Introduction Fill in the Blanks

  1. Python was created by ________ in 1991. (Guido van Rossum)
  2. Python uses ________ for code blocks instead of braces. (indentation)
  3. Python is known for its ________ and readability. (simplicity)

Basics Fill in the Blanks

  1. In Python, variables are created by ________ a value. (assigning)
  2. The data type for whole numbers is ________. (int)
  3. The operator for exponentiation is ________. (**)
  4. A ________ loop repeats as long as a condition is true. (while)
  5. Functions are defined using the ________ keyword. (def)

Intermediate Fill in the Blanks

  1. ________ are mutable sequences in Python. (Lists)
  2. ________ are immutable and created with parentheses. (Tuples)
  3. Dictionaries store data as ________ pairs. (key-value)
  4. To open a file for reading, use mode ________. ('r')
  5. The ________ statement ensures files are properly closed. (with)

Advanced Fill in the Blanks

  1. ________ is the method called when an object is created. (__init__)
  2. ________ handles runtime errors in Python. (Exceptions)
  3. ________ sort is a simple sorting algorithm. (Bubble)
  4. ________ is a library for data manipulation. (Pandas)
  5. ________ is used for plotting in Python. (Matplotlib)