Programming with Python Class 5

Real projects We are going to make a parenthesis in the usual course of the course to propose a series of projects that we could carry out with Python. The idea is to carry out a real project that helps us delve into the programming language and investigate new concepts.…

Programming with Python Class 4

Variables and operations In this class we will see the data types that can be used in Python. Integers and reals An integer variable is the one that stores a number without decimals To handle decimal numbers we will use the float (real) Example integers age = 35# Show age…

Programming with Python Class 3

My first program In this first python program, we are going to display the text “Hello world” on the console. With the IDLE we open the attached file primerprograma.py and execute it # Python course firstprogram.py print (“Hello world! \ n”) If we compare it with the same program in…

Programming with Python Class 2

Development environment In order to program with python, we must first download the interpreter and the basic libraries. There are several development environments to work with Python. To start working we will go to the page www.python.org and download Python version 3.7. We install it in the folder c: \…

Programming with Python Class 1

Introduction We started the Programming with Python course, where we will start in this interesting programming language. We will try to build python programs following a series of examples and comparing them with other languages ​​such as C or Java. Language features . Python is an interpreted language, therefore it…