The use of programming languages has taken on a high level of importance today for everything they allow us to do from the creation of websites to the development of complex applications. One of the most popular and used languages in Python. Python is an object-oriented programming language with too many features that allow the developer to have the necessary tools to carry out their work in the best conditions of dynamism, security and scalability..
Python Features
Some of the general features of Python are:
- It uses a simple syntax to understand the code entered.
- It is useful and practical for prototyping and ad-hoc programming tasks.
- It is possible to add new modules implemented through compiled languages such as C or C ++
- It integrates an interactive mode of Python for testing code snippets and has an integrated development environment called IDLE.
- It integrates a powerful standard library which is compatible with programming tasks such as establishing connections to web servers, searching for text with regular expressions, reading and modifying files and more.
- Available for macOS, Windows, Linux and Unix operating systems.
Python improvements
Recently, the Python 3.9 edition has been launched, which offers us improvements and news such as:
- New built-in functions like string methods to remove prefixes and suffixes.
- New functions in the standard library such as variable annotations and the addition of os.pidfd_open () which facilitates the management of processes without signals.
- Interpreter improvements such as CPython will make use of a new PEG-based parser, some modules such as audioop, _bz2, _codecs, _contextvars, _crypt, _functools, _json, _locale, math, operator, resource, time, _weakref, etc, now make use of multiphase initialization
- The IANA time zone database will be active in the standard library in the zoneinfo module.
- Combination operators and dictionary update.
- Integration of more modern modules.
TechnoWikis will explain how to install Python 3.9 on Windows 10 and thus have this valuable programming language.
To stay up to date, remember to subscribe to our YouTube channel! SUBSCRIBE
How to install Python 3.9 on Windows 10
Step 1
Let's go to the Python URL in the following link:
Python
Button
Step 2
There we go to "Downloads" and we will see the following:
Step 3
We click on "Python 3.9.0" to download the executable:
Step 4
Once it is downloaded, we click on it and the Python installation wizard in Windows 10 will open:
Step 5
There we will first activate the box "Add Python 3.9 to PATH":
Step 6
Then we select the option "Customize installation" and we will see this:
Step 7
There we can activate or not the optional features of Python, we click Next and in the next window we will see some additional options:
Step 8
We activate the "Install for all users" box and this will modify the path where Python is installed on the system:
Step 9
We click on "Install" to carry out the Python 3.9 installation process in Windows 10:
Step 10
Once this process comes to an end we will see the following. We click on "Close" to exit the wizard.
Step 11
Now we access the command prompt as administrators:
Step 12
In the console we are going to check the Python version with the following command:
python -v
Step 13
We can see that it is version 3.9.0. Now we go to the Start search engine and enter "Python", select "IDLE (Python 3.9 64-bit)":
Step 14
The Python console will open:
Step 15
There we are going to execute the following line to see its behavior:
print ("TechnoWikis")
So we have seen how to install Python 3.9 in Windows 10 with TechnoWikis and you will have a wide set of options to develop what you want..