support@90-10.dev

Introduction to Python

Python is a powerful, high-level, and versatile programming language that has gained immense popularity among developers, data scientists, and hobbyists.

Why Python?

Python's simplicity and readability make it an excellent choice for beginners and experienced programmers alike. Its vast library of modules and packages allow for rapid development of various applications, from simple scripts to complex web and data analysis projects. Some of the key features of Python include:

  • Easy-to-read syntax
  • Strong support for integration with other languages
  • Extensive standard library
  • Active community and third-party libraries
  • Cross-platform compatibility

Installing Python

Before you can start coding in Python, you need to install it on your computer. You can download the latest version of Python from the official website at https://www.python.org/downloads/. Follow the instructions for your operating system (Windows, macOS, or Linux) to complete the installation.

After installing Python, you can check if it's installed correctly by opening a terminal (Command Prompt on Windows) and running the following command:

python --version

If Python is installed correctly, you should see the version number displayed. At the time of writing, the current version is 3.11.3 so your output should look:

python 3.11.3

Running Your First Python Script

Here is how to create a simple "Hello, World!" program:

1. In your terminal, create a new file called hello.py by running:

touch hello.py

2. Open hello.py in your preferred text editor and enter the following code:

print("Hello, World!")

Save the file and return to the terminal.

3. To run the script, enter the following command:

python hello.py

You should see the output "Hello, World!" displayed in the terminal.

Congratulations! You've successfully set up your Python environment and run your first Python script.


Setting Up Your Python Environment

NB: This is an advanced technique.

It's essential to set up a proper environment for your Python projects to keep your dependencies organized and maintain a clean development workspace. One of the best ways to do this is by using virtual environments.

What is a Virtual Environment

A Python Virtual Environment is an isolated environment created for running Python applications, allowing users to manage project-specific dependencies and Python versions without interfering with the global Python installation. It provides a separate space where you can install packages and dependencies without affecting the system-wide Python setup.

Creating a Virtual Environment

Using Python's venv module is an easy way to create and manage virtual environments. To create a virtual environment:

  1. Open a terminal and navigate to the directory where you want to store your Python projects.

2. run the following command:

python -m venv learning_python

Replace learning_python with the desired name for your virtual environment. This command will create a new folder with the necessary files to set up a virtual environment.

3. Activate the Virtual Environment by running the following command in your terminal:

  • On Windows:
learning_python\Scripts\activate.bat
  • On macOS or Linux:
source learning_python/bin/activate

Once activated, you should see the name of the virtual environment in parentheses before your terminal prompt:

% source learning_python/bin/activate
(learning_python) % 

Virtual Environment Benefits

Benefits of using a Python Virtual Environment include:

  1. Isolation: Each virtual environment has its own separate Python interpreter, packages, and configurations. This ensures that different projects with different dependencies can coexist without conflicts.
  2. Dependency management: Virtual environments make it easy to manage and organize project-specific dependencies, avoiding potential incompatibilities with other projects or the system-wide Python installation.
  3. Reproducible builds: Virtual environments help ensure that your code and its dependencies can be easily replicated in other environments, improving the portability and shareability of your projects.
  4. Version control: Using virtual environments allows you to work with different versions of Python and packages for various projects, without the need to affect the system-wide installation.
  5. Easier collaboration: Sharing a project with a team or deploying it to a production server becomes more straightforward, as the virtual environment contains all the necessary dependencies and configurations.

Documentation

You can find the official Python documentation on the Python Software Foundation's website at https://docs.python.org/. The documentation covers all aspects of the language, including tutorials, language reference, library reference, and more.

Here are some of the available resources:

  • Python Tutorial: A comprehensive guide for learning Python, suitable for beginners and experienced programmers alike. You can access it at https://docs.python.org/3/tutorial/.
  • Python Standard Library: A reference for Python's built-in modules, functions, and classes, which you can use to develop a wide range of applications. You can find it at https://docs.python.org/3/library/.
  • Python Language Reference: A detailed guide to Python's syntax, semantics, and core language constructs. It is available at https://docs.python.org/3/reference/.
  • Python HOWTOs: A collection of informative articles that focus on specific topics or techniques in Python. You can access them at https://docs.python.org/3/howto/.
  • Python Installation Guides: Instructions for installing and configuring Python on various platforms can be found at https://docs.python.org/3/using/.

Remember that the documentation is available for different Python versions, so make sure you select the appropriate version for your needs. To switch between versions, use the dropdown menu in the top-left corner of the documentation website.

In addition to the official documentation, you can also find helpful resources such as community-driven forums, tutorials, and books to learn Python. Some popular platforms include:

  • Stack Overflow: A platform for asking and answering programming-related questions, including those about Python.
  • Real Python: Offers in-depth tutorials and articles on various Python topics for different skill levels.
  • Python.org Community: Provides information about Python-related events, user groups, and mailing lists.

Take Away

Python is a powerful and versatile programming language that has gained widespread popularity among developers, data scientists, and hobbyists. It is a powerful tool with a strong support system, making it an ideal choice for anyone looking to learn a programming language or expand their existing skillset.

By using virtual environments, you can keep your dependencies organized and maintain a clean development workspace, which is crucial for efficient and effective coding.

As you continue learning Python, you will discover its vast potential and the various domains in which it can be applied. From web development and data analysis to machine learning and automation, Python offers a myriad of opportunities for both personal and professional growth. By mastering this versatile language, you will gain valuable skills that can open doors to exciting new projects, collaborations, and career opportunities.

Happy coding!