Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.74 KB

File metadata and controls

42 lines (32 loc) · 1.74 KB

img

Data structures - lists,tuple and sets in python

Intro

In this session, we will explore python's list data structures. Buckle up, lists are very important as you will see in future projects.

Resources

  1. Lists
  2. Data structures
  3. Youtube

Learning objectives

At the end of this project, you should be able to explain to anyone without the help of Google the following concepts

  • What are lists and how to use them
  • What are the differences and similarities between strings and lists
  • What are the most common methods of lists and how to use them
  • How to use lists as stacks and queues
  • What are list comprehensions and how to use them
  • What are tuples and how to use them
  • When to use tuples versus lists
  • What is a sequence
  • What is tuple packing
  • What is sequence unpacking
  • What is the del statement and how to use it

Script Requirements

  • Allowed editors: vi, vim, emacs
  • All your files will be interpreted/compiled on Ubuntu 20.04 LTS using python3 (version 3.8.5)
  • All your files should end with a new line
  • The first line of all your files should be exactly #!/usr/bin/python3
  • Your code should use the pycodestyle (version 2.8.*)
  • All your files must be executable

Quizes

Quizes

back