Creating a Cross-Platform Image Viewer with wxPython (Video)

Learn how to create a basic cross-platform image viewer using wxPython and Python This video is based on one of the examples from my book, Creating GUI Applications with wxPython, which you can purchase at the following: Amazon Leanpub The code for this example can be found in chapter 2 of the book as well

Creating a Cross-Platform Image Viewer with wxPython (Video) Read More »

Python 101: Learning About Sets

A set data type is defined as an “unordered collection of distinct hashable objects” according to the Python 3 documentation. You can use a set for membership testing, removing duplicates from a sequence and computing mathematical operations, like intersection, union, difference, and symmetric difference. Due to the fact that they are unordered collections, a set

Python 101: Learning About Sets Read More »