Welcome to PythonWithRony! This repository is dedicated to helping you learn Python step by step. Whether you are a beginner or looking to enhance your skills, you'll find valuable resources and tutorials here.
This repository is designed to guide you through learning Python, starting from the basics and progressing to more advanced topics. Each section includes explanations, code examples, and exercises to reinforce your learning.
To get started with Python, you need to install it on your machine. Follow the instructions on the official Python website to download and install Python.
Set up your development environment by installing a code editor or IDE. Popular choices include VS Code, PyCharm, and Jupyter Notebook.
- Press
Win + R, typecmd, and pressEnter. - Alternatively, search for
cmdin the Start menu and select Command Prompt.
- Type
python --versionand pressEnter. - You should see the version of Python installed, e.g.,
Python 3.12.4.
Let's start with the classic "Hello, World!" program. Create a new Python file and add the following code:
print("Hello, World!")name = input("Enter your name: ")
print("Hello, {}".format(name))