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 ReadingPython
Beginner 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 ReadingBeginner Python tutorial – 02 – Conditionals statements
Video version: Sometimes we want to run a code depending on if one or more conditions apply (the user’s age is more than 18 or the temperature is lower than a 100 degrees). That’s when we use conditionals. If Let’s…
Continue ReadingBeginner Python tutorial – 01 – Print, Variables & Input
This is your first approach to Python but don’t worry, it’s going to be easy. We will learn about how to print information, how to ask the user for information and how to store that information.
Continue ReadingBeginner Python tutorial – 00 – Introduction
In this video, I explain how the series is going to be structured and how we are going to learn.
Continue Reading