Viewing the Videos or Subscribing to the Podcast

Some of the entries have a picture, which you can click to access the video. Otherwise, to see the videos, use this icon to subscribe to or view the feed:


Or, subscribe in iTunes

Thursday, July 18, 2013

Introduction to Python Functions

A look at how to, and why you should, use functions in your Python programs.

Wednesday, June 26, 2013

A Simple Python Quiz Program, Part 3

We enhance the quiz program by reading the questions and answers from a file. Source code

Wednesday, June 12, 2013

Tynker—Physics and Cloning

Let’s look at two very nice features of Tynker. The physics feature allows you to have falling objects and accurate projectile motion, combined with adjustments for gravity, friction, density, gravity, and much more. Cloning lets you have multiple instances of actors (like Scratch sprites), without having to duplicate code.

Sunday, June 2, 2013

Simple Python Calculator using a Dictionary and Functions for Operators

This lesson creates a simple calculator using a dictionary to look up functions for operators. The point is to practice more with dictionaries, and to learn about higher-order functions.
Source code