Basic concepts Some basic concepts are very important for learning programming. They are variables, mathematical operators, logical operators and loops. We will study these concepts through a practical approach using the Python language. Python is a general purpose programming language that has become very popular for being easy to learn and use, having several frameworks and libraries , being versatile, efficient, fast, flexible and having good support for machine learning. Our goal is not to deepen learning about Python. For more details on Python, visit the official language page https://www.python.org/ But we will use language Python to learning the basic concepts of Programming Logical Then, lets go To begin is need install the Python. We will go use the 3.x version. download You can use vim, notepad, notepad++ or any other text editor. To develop the code examples for this article Variables We can describe a variable as a part of memory where we store data to process or ...