Posts

Showing posts from August, 2020

Getting Started with python

  Python is a very popular programming language. The programmer who masters it has many possibilities and its syntax is the basis of other very popular languages. In order for you to start mastering it, the first thing you should know is precisely that, its basic syntax. If you already have some programming notions, the learning curve will be easier for you. We will try to be as precise as possible so that you can start off on the right foot:   How to get started?  We have 2 ways of programming with Python: • Interactive mode: This mode executes the orders at the moment we indicate them; that is, it carries them out in real-time. In order to work with this mode, you will have to activate the interpreter from the command line. As soon as we have it done, we can do the usual "Hello, World" print test. • Script mode: Interactive mode is the best to start with, but it won't take long for us to realize that we are going to be a little short. Later on, it will be much more prac