Interactive Programming in Python 2

This is my first test of the simpleGUI library in Python.  It was designed by the Computer Science Professors at Rice University. They use it in their classes.  I am expecting to build a Pong game using simpleGUI and Codeskulpter in a few weeks.  Now what I have below is a simple counter that counts seconds. The user is allowed restart the counter using the "Click Me To Reset" button.

From the exercise below, the most important learnings  were event-driven programming, event queue, handlers and program structure.


I should note that this was built in Python 2 and not 3.  I generally use Python 3 but the Rice University videos were done using Python 2.

Comments

Popular posts from this blog

Space Wars- Python 3

Maze Game in Python using Turtle