CS 200 - Fall 2023. 10/25/2023.


[Home]

Welcome to CS 200!

Video of the Day

Python Tips and Tricks

I hereby solicit suggestions for the video of the day. Please email me your ideas with explanations. Selected entries will win 5 homework points. If your video is played at the beginning of class, you must also briefly explain something about the video and something about yourself - in person.

Logical problem of the day

import sys
sys.getsizeof(1)
sys.getsizeof('1')
sys.getsizeof([1])
sys.getsizeof({})
What is the output of the above code?

https://pollev.com/slade You may also download the app to your phone. Use the "slade" poll id.

Lecture 15: Data Structures.

Administrivia

  • I have Office hours via zoom, meeting ID 459 434 2854. Wednesday 4-6pm.

  • ULA office hours posted on csofficehours.org. See the posting on Ed Discussions for more information.

  • Homework assignments: [Assignments]. hw5 is almost available. I will be updating it to make it conform with python 3.11. You will submit with gradescope.

    Data Structures

    DataStructures.html (jupyter) Data Structures - heaps

  • Iterators.html
  • Decorators.html
  • Exceptions.html

    Getting to know UNIX

    UNIX Introduction Principle 3.
    [Home]