An introduction to datastructures in Python, this post takes a look at variables and introduces lists.
Category Archives: Python
Introducing a new Krita Plugin – Buttonz Booster
Krita has been my go-to application for digital drawing and editing. It’s a powerful open-source painting program, on par with professional software like Photoshop, and loved by artists worldwide Where does Buttonz Booster fit in? The purpose is to save you some clicks, and it allows you to create a new document with a predefined …
Continue reading “Introducing a new Krita Plugin – Buttonz Booster”
Python If Statements and Loops (Lazy Beginner Tutorial)
Welcome to the beginning parts of Learn Python In A Normal Way. In this series we’re working on our own Training App. The series focuses on how to get up and running with logical thinking and programming with Python, and it should suit the beginner since doing assignments is what makes you learn quicker. Make …
Continue reading “Python If Statements and Loops (Lazy Beginner Tutorial)”
How To Install Python On Your Computer
Installing or updating Python can sometimes be a little tricky and it’s confusing to understand which version is actually installed. Don’t worry in this tutorial we show you how to handle that. One of the downsides of Python is setting up the environment in a correct way and the fact that there are a multitude …
Python and the Building Blocks of Programming
Table of Contents Python and the Building Blocks of Programming Goals of This Post Series Building Blocks of a Program Examples of how building blocks are used Building block 1 – Variables Exercise Python and the Building Blocks of Programming Goals of This Post Series You will learn the anatomy of a program and what …
Continue reading “Python and the Building Blocks of Programming”
How to open a file in Python in different modes
Opening a file in Python is really simple. How do you create a file though that doesn’t exist? If you use the open function in Python like so You’ll run into the error Mode for open a file We need to understand that opening a file can be followed by a mode parameter, the signature …
Continue reading “How to open a file in Python in different modes”