Tuesday, Thursday |
CS 1110: Introduction to Computing Using Python Fall 2018 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Main
About: Announcements Course Staff Times & Places Calendar Materials: Lectures Texts Python Text Shell Videos Assessment: Grading Assignments Labs Exams Resources: CMS Piazza AEWs FAQ Python API Introcs API Python Tutor Style Guide Terminology Academic Integrity |
Lecture SummariesThis page lists a summary of the activities of each week, in reverse chronological order. This is your go-to page for downloading in-class handouts and getting caught back up if you get behind. This page is updated dynamically all semester long, with new material added as we get there. If you want to see what future lectures in this class will be, you should look at the syllabus page. Week 154 December (Tuesday): Course Wrap-Up
[Presentation]
Week 1429 November (Thursday): Searching and Sorting[Handout] [Presentation]
Today we complete our discussion of loop invariants and show how to use them to implement sorting. This is the last lecture covering material on the exam. Reading: Appendix B.1-B.3 Lab 12: Sequence Algorithms
[Instructions]
27 November (Tuesday): Sequence Algorithms (cont)[Handout] [Presentation]
Today we continue our discussion of invariants and algorithms from the previous lecture. We review the Dutch National Flag algorithm and talk about how changing invariants can change your algorithm. Week 1422 November (Thursday): THANKSGIVING
20 November (Tuesday): Sequence Algorithms[Handout] [Presentation]
Today we start on the last major topic in the course: sorting. Before we get to sorting, we have start with the framework for building complex algorithms on sequences (strings, lists, etc.). This lecture covers advanced loop-invariants, and is a very important lecture for the final exam. Reading: Loop Invariants Week 1315 November (Thursday): GUI Applications[Handout] [Presentation]
Today we return to classes one last time, and show how classes and while-loops fit together. By the end of the lecture, we will see that class invariants and loop invariants are really the same thing in practice. Today's lecture will provide you all that you need to know to get started on the last assignment. Lab 11: Loop Invariants
[Instructions]
13 November (Tuesday): Loop Invariants[Handout] [Presentation]
Today we discuss how to design algorithms for while-loops. We introduce the notion of a loop-invariant, and show how to use that to write a program with a loop. Invariants are an important topic on the final exam, and are covered in the final labs. Reading: Loop Invariants Week 128 November (Thursday): While Loops[Handout] [Presentation]
Today we introduce while-loops, which are an alternate form of iteration. They are trickier to use than for-loops, and will be an important part of the last part of the course. Reading: Chapter 7 Lab 10: Exceptions and Typing
[Instructions]
6 November (Tuesday): Programming with Subclasses[Handout] [Presentation]
Today we are going to delve in a little deeper with subclasses. To understand how to program with subclasses, we need to understand how to make type more explicit in our programs. We do that in this lecture, including a review of the try-except statement that we saw earlier in the course. Reading: Exceptions in Python Week 111 November (Thursday): Operators and Abstraction[Handout] [Presentation]
There is a lot going on with classes in Python. There are all these mysterious methods that start with an underscore. Today we talk these mysterious methods. We show how to use these methods to create classes for mathematical types like fractions or complex numbers. The material in this lecture is the last material that will be on the second prelim. Lab 9: Card Games
[Instructions]
30 October (Tuesday): Inheritance[Handout] [Presentation]
Subclasses and inheritance are integral part of object oriented programming. It allows us to take classes that someone else created (such as the GUI classes that Kivy provides) and add functionality to them. Today we show how these features are used in Python. Reading: Chapter 18 Week 1025 October (Thursday): Using Classes Effectively[Handout] [Presentation]
In the last lecture, we learned the syntax for defining classes. Today we look at the design philosophy for making classes. This lecture is very similar to Lecture 9 (Algorithm Design), except that it is for classes instead of functions. Reading: Chapter 17 Lab 8: Lists & Dictionaries
[Instructions]
23 October (Tuesday): Classes[Handout] [Presentation]
Up until now, if we wanted to use objects, we had to import a module that provided them for us. Today we finally learn how to create our own classes. Not only can we make our own class types now, but we can even add them to the Python visualizer. Reading: Chapters 15, 16 Week 918 October (Thursday): Nested Lists and Dictionaries[Handout] [Presentation]
This lecture covers several advanced topics on sequences. In particular, we will look at the topic of multi-dimensional lists, and why we would want to use them. We also introduce dictionaries, which are similar to a sequence, but have several important differences. Reading: Chapter 11 Lab 7: Recursion Exercises
[Instructions]
16 October (Tuesday): More on Recursion[Handout] [Presentation]
Today we continue to talk about recursion. We look at the different ways that we can break up a recursive function, and more advanced uses of divide-and-conquer. We also look at how recursion is used in Assignment 4. Reading: Sections 6.5-6.9 Week 811 October (Thursday): Recursion[Handout] [Presentation]
Today we talk about recursion, a powerful computing tool and one of the harder concepts in the course. Recursion is one of the fundamental principles of computer science, and used for a lot of advanced algorithms. We will see many applications as the course progresses. Reading: Section 5.8-5.10 9 October (Tuesday): FALL BREAK
Week 74 October (Thursday): For-Loops[Handout] [Presentation]
Lists (and sequences) come with their own special control structure: the for-loop. In this lecture we see what for-loops can (and cannot) do to make more interesting programs. Reading: Sections 8.3, 8.7, Chapter 10 Lab 6: Asserts & Lists
[Instructions]
2 October (Tuesday): Lists (and Sequences)
[Handout]
[Presentation]
Reading: Sections 10.1-10.2 and 10.4-10.6 Week 627 September (Thursday): Asserts and Error Handling[Handout] [Presentation]
We have talked about how preconditions are a promise that indicate what your function will and will not do. Today we will show how to make them more than a promise. We will also show how error reporting relates to the call stack. Reading: Appendix A Lab 5: Objects & Conditionals
[Instructions]
25 September (Tuesday): Memory in Python[Handout] [Presentation]
Throughout the past few weeks, we have seen several different ways of representing memory in Python. Today we put everything together, introducing global space, heap space, and the call stack. The latter is the collection of frames for all currently executing functions. Week 520 September (Thursday): Objects[Handout] [Presentation]
Today, we introduce the notion of objects. Objects are a new type of data. They require a new conceptual model for us to understand them. Objects are a major part of Assignment 3. Lab 4: Debugging
[Instructions]
18 September (Tuesday): Algorithm Design[Handout] [Presentation]
Your first assignment was very much do-this/do-that. Today we step back and see how we would design a complex program from scratch. How do we take a complex task and break it up into manageable pieces? Reading: Section 6.2 Week 413 September (Thursday): Conditionals and Control Flow[Handout] [Presentation]
Today we talk about the difference between program structure and program flow. We also introduce the conditional, which is our first program structure for controlling program flow. This will not be necessary for Assignment 1, but will be very important in later assignments. Reading: Sections 5.1-5.7 Lab 3: Strings and Testing
[Instructions]
11 September (Tuesday): Specifications and Testing[Handout] [Presentation]
We now know how to write some complex functions. However, writing functions takes a lot of practice and you are likely make mistakes along the way. That is why it is extremely important to test your functions and make sure they are working properly. As part of testing, we will also see why comments are more important that just notes to yourself. Reading: Docstrings in Python Week 36 September (Thursday): Strings[Handout] [Presentation]
Python really shows off its power when working with text. Today we go into depth about the string type, which is how Python represents text. We show how to cut up text and paste it back together. The techniques that we learn will be very important for the first assignment. Reading: Sections 8.1-8.2, 8.5, 8.8 Lab 2: Functions and Modules
[Instructions]
4 September (Tuesday): Defining Functions[Handout] [Presentation]
Now that we know how to use functions, we can learn how to create our own functions. As part of this, we will learn the important difference between a function call and a function definition. Reading: Chapter 3, Sections 6.1-6.3 Week 230 August (Thursday): Functions and Modules[Handout] [Presentation]
Today we introduce the concept of a module and show how they provide Python with extra (optional) functionality. We show how to use the many modules built into Python, and how to make our own modules and/or scripts. This will allow us to start programming for real. Reading: Sections 3.1-3.3 Lab 1: Expressions and Assignments
[Instructions]
28 August (Tuesday): Variables and Assignments
[Handout]
[Presentation]
Reading: Sections 2.2-2.9 Week 123 August (Thursday): Types and Expressions[Handout] [Presentation]
In this class we give an overview of the course and its expectations. We show you how to get started with Python. In particular, we introduce types and expressions, which is the bare minimum that you need to do something "useful" in Python. Reading: Chapter 1; Section 2.1 Lab 0: Getting Started
[Instructions]
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Course Material Authors: D. Gries, L. Lee, S. Marschner, & W. White (over the years) |