Here’s a fun Python coding challenge that can be adapted to different levels of ability. Remember the game Duck Duck Goose from school? You sit in a circle and one player walks...
Video courses are an excellent way to develop your Python programming skills. They provide an immersive experience that allows you to make use of multiple learning modalities at the same time. They...
In this article we will look at some practical uses of Python string methods to manipulate text. Much of the the power of the internet depends on the ability to manipulate strings,...
This page contains recommendations for books to help you learn about algorithms and data structures. There is a lot of territory between beginner and advanced level Python programming, and the best way...
A power set is the set of all possible subsets of a set. For example, if we have a set containing [A, B, C] the possible subsets are: [[], ['A'], ['B'], ['A',...
There is no doubt that the best way to learn to program is to practice. However, this is not enough. After all, if you practice typing for many years with just two...
One of the things which makes Python awesome is the quality and quantity of open source packages available to extend its power. This means the with the right package and just a...
Making games with Python is a great way to improve your Python programming skills and have fun along the way. It can be an end in itself, but it can also give...
Here’s a fun little puzzle for you, which lends itself well to a Python coding solution. Find a two-digit positive integer that becomes 7 times smaller when its leftmost digit is removed....
Scrapy is a powerful Python package that makes it easy to crawl the web and mine data. There are many reasons why people might want to do this (or hire you to...