# Printing Python 101 Lesson
Welcome to the **Printing Python 101 Lesson** repository! This repository contains resources and examples for learning basic Python programming, specifically focusing on printing output.
## Description
If you don't know how to use Python, you can learn here or visit [python.org](https://www.python.org/) for more information.
## Prerequisites
- Basic understanding of programming concepts
- Python installed on your system. You can download it from [python.org](https://www.python.org/downloads/).
## Getting Started
1. **Clone the repository:**
```bash
git clone https://github.com/Cesar-Gabriel/printing-python-101-lesson-.git
- Navigate to the repository directory:
cd printing-python-101-lesson-
Learn how to print "Hello, World!" in Python.
print("Hello, World!")
Understand how to print variables.
name = "Jhon Doer"
print("Hello, " + name)
Learn how to format strings using f-strings.
name = "Jhon Doe"
age = 50
print(f"My name is {name} and I am {age} years old.")
If you would like to contribute to this repository, please fork the repository and submit a pull request. Contributions are welcome!
This project is licensed under the Apache License. See the LICENSE file for details.
If you have any questions, feel free to open an issue or contact the repository owner.
Happy Learning!