Programación Python

Numerous prominent companies, such as Google, YouTube, Instagram, Spotify, Netflix, Dropbox, Quora, Reddit, Pinterest, and NASA, use Python for various applications. These organizations leverage Python's versatility, readability, and extensive library support to power their diverse applications and services. 


Python is widely used in academic research, particularly in economics.

A growing world of possibilities

ANACONDA, a package that includes Python, and hundreds of modules 


Download Python form the official website (includes an editor (IDLE), which can be enhanced by installing it with IdLex 




Work with python via Google colab (you need a free Google account)



Module a single file containing Python code, which can define functions, classes, and variables. 

Package is a collection of modules organized in a directory hierarchy. It includes an __init__.py file (which can be empty) to signify that the directory is a package. 

A Libraryis a collection of packages and modules that provide specific functionalities. Libraries are designed to be reusable and can be easily integrated into different projects. 

In summary, a module is a single Python file, a package is a directory containing multiple modules (and possibly sub-packages), and a library is a collection of packages and modules that offer a set of related functionalities.



A Virtual Environment is a self-contained directory that contains a Python interpreter and a copy of the site-packages directory, which includes all the libraries installed within the environment.