Skip to content

Latest commit

 

History

History
64 lines (43 loc) · 1.55 KB

README.md

File metadata and controls

64 lines (43 loc) · 1.55 KB
# 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
  1. Navigate to the repository directory:
    cd printing-python-101-lesson-

Lessons

Lesson 1: Hello, World!

Learn how to print "Hello, World!" in Python.

print("Hello, World!")

Lesson 2: Printing Variables

Understand how to print variables.

name = "Jhon Doer"
print("Hello, " + name)

Lesson 3: Formatting Strings

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.")

Contributing

If you would like to contribute to this repository, please fork the repository and submit a pull request. Contributions are welcome!

License

This project is licensed under the Apache License. See the LICENSE file for details.

Contact

If you have any questions, feel free to open an issue or contact the repository owner.

Happy Learning!