IT 117: Intermediate Scripting
Class 10

Review


New Material


Studying


Microphone

Homework 5

I have posted homework 5 here.

It is due this coming Sunday at 11:59 PM.

Quiz 3

Let's look at the answers to Quiz 3

Questions

Are there any questions before I begin?

Review

The Size of a Set

When Are Sets Equal?

Elements in A Python Set

for Loops with Sets

Testing for Set Membership

Union of Sets in Python

Intersection of Sets in Python

Difference between Sets in Python

Symmetric Difference between Sets in Python

Subsets and Supersets

Disjoint

The clear Method

min And max with Sets

Sets More Efficient Than Lists

Attendance

New Material

Working with the Operating System

The os Module

os.getcwd()

os.listdir(path)

os.chdir(path)

os.rename(old_name, new_name)

os.remove(path)

os.rmdir(path )

os.mkdir(path )

Running Unix Commands within Python

os.environ

The os.path Module

os.path.isfile(path) and os.path.isdir(path)

os.path.basename(path)

The sys Module

Getting Values from the Command Line

Leaving a Running Script

Usage Messages

The platform Module

Studying

Class Exercise

Class Quiz