Skip to content

Rony7s/PythonWithRony

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

PythonWithRony

Under Construction

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.

Table of Contents

  1. Introduction
  2. Getting Started
  3. Basic Concepts
  4. Advanced Topics
  5. Projects
  6. Resources
  7. Contributing
  8. License

Introduction

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.

Getting Started

Installation

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.

Setting Up Your Environment

Set up your development environment by installing a code editor or IDE. Popular choices include VS Code, PyCharm, and Jupyter Notebook.

Checking Python Installation on Windows CMD

Open Command Prompt

  1. Press Win + R, type cmd, and press Enter.
  2. Alternatively, search for cmd in the Start menu and select Command Prompt.

Check Python Installation

  1. Type python --version and press Enter.
  2. You should see the version of Python installed, e.g., Python 3.12.4.

Basic Concepts

Hello World

Let's start with the classic "Hello, World!" program. Create a new Python file and add the following code:

print("Hello, World!")

Input Name

name = input("Enter your name: ")
print("Hello, {}".format(name))

About

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.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors