IT 116: Introduction to Scripting
Class 28 - Final Review

Review


Microphone

Final Exam

The final exam will be held on Thursday, May 16th from 11:30AM - 2:30PM.

The exam will be given in this room.

If for some reason you are not able to take the Final at the time it will be offered, you MUST send an email to me before the exam so we can make alternative arrangements.

The final will consist of questions like those on the quizzes, along with questions asking you to write short segments of Python code.

60% of the points on this exam will consist of questions from the Ungraded Class Quizzes.

You do not need to study a Class Quiz question if the topic is not mentioned in either the Midterm or Final review.

The remaining 40% will come from 4 questions that ask you to write some code.

To study for the code questions you should be able to

A good way to study for the code questions is to review the Class Exercises homework solutions and Class Notes.

Todays class will be a review session.

You will only be responsible for the material in today's class and the review for the Midterm, which you will find here.

Although the time alloted for the exam is 3 hours, I would expect that most of you would not need that much time.

The final is a closed book exam.

To prevent cheating, certain rules will be enforced during the exam.

Remember, the Midterm and Final determine 50% of your grade.

Course Evaluation

At the end of each semester we offer you the opportunity to say what you think about this course.

What have I done right?

What have I done wrong?

What can I do better?

You are not asked for you name.

So the submissions are anonymous.

I will not see your responses until after I have submitted grades for this course.

We collect this feedback through Course Evaluations.

I will use what you say to make this course better.

To complete the course evaluation, use the following link .

You have until Friday, May 24th, to submit the evaluation.

No Class Next Week

A normal semester has 28 classes.

But this semester has 29.

I do not have materials for a 29th class.

Next Tuesday I will have Zoom Office Hours, from 9 AM to 5 PM,instead of a class.

The Zoom session will be conducted from my home in Somerville.

Not my office on the UMB campus.

Questions

Are there any questions before I begin?

Attendance

Review

Global Variables

Functions that Return Values

Returning Multiple Values

Files

Working with a File in Python

Objects

Opening a File

Reading Files with a for Loop

Running a Script Using python3

Making a Script Executable

Errors

Syntax Errors

Logic Errors

Runtime Errors

Exception Objects

Catching Exceptions

Exceptions and Data Validation

The Code in the try Clause

The else Clause

Sequences

Lists

Operators That Work on Objects

Concatenating Lists

The Repetition Operator

Using a for Loop with Lists

Indexing

The len Function

Changing Elements Using Indexes

Empty Lists

The in Operator

List Methods

The append Method

The sort Method

The reverse Method

The del Statement

The min and max Functions

Reading a File into a List

Strings Are Sequences

Accessing Characters With Indexing

Using a for Loop with Strings

Strings Are Immutable

String Methods