Python command line interfaces: An overview of argparse.
Command-line or console applications are programs that are designed to be used via a text only interface such as the […]
Python command line interfaces: An overview of argparse. Read More »
Command-line or console applications are programs that are designed to be used via a text only interface such as the […]
Python command line interfaces: An overview of argparse. Read More »
Python is a popular, easy to learn programming language that is great option for beginners. There are a ton of
Top 8 resources for Python beginners Read More »
According to the Python documentation, the enumerate function is a built in function that returns an enumerate object. Another popular
An overview of the enumerate() function Read More »
Exception Handling There are at least two types of errors in the Python programming language: Syntax errors and Exceptions. Syntax
Exception handling in Python Read More »
Getting started with sqlite in Python SQLite is a lightweight disk-based relational database engine that does not require a separate
Getting started with SQLite in Python Read More »
PyCon Zim 2017 I had the priviledge of attending PyCon Zimbabwe two weeks ago. This was my very first language
PyCon Zimbabwe 2017 Read More »
Desktop notifications are used to inform the user about an event or display some form of information without getting in
How to send desktop notifications in Linux. Read More »
A common file format used to store data is the .csv file. The ‘csv’ in the name stands for “Comma
Working with CSV files in Python Read More »
In Python, a virtual environment is way of isolating a working copy of Python to test software or to install
Virtual environments in Python Read More »