Skip to content

DanielPerezMoralesDev13/Python-Introduccion

Repository files navigation

Introduction to Python Repository

Important

This repository contains a series of Python files designed to introduce basic concepts of the Python programming language. Each file addresses a specific topic, from variable declaration to exception handling.

Files

  1. Hello World.py: A simple script that prints "Hello, World!" to the console.
  2. Variables.py: Introduces the concept of variables in Python and how to assign values to them.
  3. Operators.py: Explores basic operators such as addition, subtraction, multiplication, and division in Python.
  4. Strings.py: Covers basic string operations and manipulations.
  5. Lists.py: Introduces lists, a fundamental data structure in Python.
  6. Tuples.py: Explains tuples and their differences from lists.
  7. Sets.py: Introduces sets and their unique properties.
  8. Dictionary.py: Explores the use of dictionaries to map keys to values.
  9. Conditionals.py: Introduces conditional statements (if, else, elif) in Python.
  10. Loops.py: Covers loops such as for and while for iteration in Python.
  11. Functions.py: Introduces how to define and use functions in Python.
  12. Classes.py: Explores object-oriented programming in Python by creating classes and objects.
  13. Exceptions.py: Introduces exception handling to manage errors in Python.
  14. Modules.py: Explains how to import and use modules in Python.

Usage

You can execute any of the files using Python in your terminal. For example:

python3 "00 Hola Mundo.py"

Note

These files are designed to be explored sequentially for a progressive understanding of Python.

Contributions

Contributions are welcome! If you have suggestions, corrections, or wish to add additional content to this guide, feel free to open an issue or submit a pull request. Your assistance is crucial in making this guide a comprehensive and up-to-date reference for the development community.

License

This repository is published under the MIT License. Feel free to use, modify, and distribute the content in accordance with the terms of this license.

I hope they are useful in your Python learning journey!