It is not false advertising: This book will make you powerful in Python. And like it even more.
Continue ReadingPython
Beginner Python tutorial – 10 – Slicing
Slicing is one of my favourite features of Python. You can get the same functionality in every other language, but not as easy, cool and elegant as in Python
Continue ReadingBeginner Python tutorial – 09 – Function Challenges
Our last lesson on functions covered from basic functions to functions with keyword arguments. Now, it is time to work your mind with a few challenges.
Continue ReadingBeginner Python tutorial – 08 – Functions
Today we are going to learn about Python functions. Functions are important, as we use them to break our program into small pieces of re-usable code, making our code more organized and tidier.
Continue ReadingBeginner Python tutorial – 07 – Guess the number
Let’s have fun coding a “Guess the number” game.
Here, we will code a game where you have to guess a number between 0 and 100. Beware, you only have 6 tries!
Continue ReadingReview: Python Tricks
Learning how to program in Python is easy, but what about learning how to program good, well-written, Pythonic code? Thanks to Python Tricks, it is easy.
Continue ReadingBeginner Python tutorial – 06 – FizzBuzz challenge
FizzBuzz is the most used problem in developer jobs interviews to filter out people on early stages. So learning how to solve it is pretty important.
Continue ReadingBeginner Python tutorial – 05 – Basic Arithmetics
When we code we use every day mathematical operations. They are easy to learn but we need to really understand them in order to avoid errors that we may overlook.
Continue ReadingBeginner Python tutorial – 04 – For and While loops
Sometimes we need to perform the same operations over a list or repeat the same actions a number of times. To do so, we use For and While loops
Continue ReadingBeginner Python tutorial – 03 – Lists
We need to list things: The users currently visiting our website, the options of a setting or the days of the week. For listing that information we use…lists.
Continue Reading