Common Python Data Structures (Guide) Quiz

Interactive Quiz ⋅ 14 Questions
By Joseph Peart

In this quiz, you’ll test your understanding of Common Python Data Structures (Guide).

By working through this quiz, you’ll revisit the abstract data types that ship with Python’s standard library and how they map onto Python’s naming scheme.

You’ll cover dictionaries and their specialized variants, array-like types, records and data objects, sets and multisets, and the stacks, queues, and priority queues that you can build from them.

The quiz contains 14 questions and there is no time limit. You’ll get 1 point for each correct answer. At the end of the quiz, you’ll receive a total score. The maximum score is 100%. Good luck!

Related Resources

Common Python Data Structures (Guide)

Course

Records and Sets: Selecting the Ideal Data Structure

In this course, you'll learn about two of Python's data structures: records and sets. You'll look at multiple types and classes for both of these and learn which implementations are best for your specific use cases.

basics data-structures python

Common Python Data Structures (Guide)

Course

Stacks and Queues: Selecting the Ideal Data Structure

In this course, you'll learn about three of Python's data structures: stacks, queue and priority queues. You'll look at multiple types and classes for all of these and learn which implementations are best for your specific use cases.

basics data-structures

Common Python Data Structures (Guide)

Course

Dictionaries and Arrays: Selecting the Ideal Data Structure

In this course, you'll learn about two of Python's data structures: dictionaries and arrays. You'll look at multiple types and classes for both of these and learn which implementations are best for your specific use cases.

basics data-structures python

Common Python Data Structures (Guide)

Tutorial

Common Python Data Structures (Guide)

In this tutorial, you'll learn about Python's data structures. You'll look at several implementations of abstract data types and learn which implementations are best for your specific use cases.

basics data-structures python stdlib