Skip to content

Commit 4ed9fdd

Browse files
author
Riya H
authored
Update README.md
1 parent 2a2781c commit 4ed9fdd

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

README.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
## 🐍 Overview
2+
3+
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Python_logo_and_wordmark.svg/2560px-Python_logo_and_wordmark.svg.png" style="height: 200px; width: auto;">
4+
5+
**Python** is a **powerful, versatile**, high-level, interpreted, object-oriented programming language, **driving innovation** across data science, web development, and automation. Valued for its **clean syntax and rapid development cycle**, Python is the go-to language for readability and efficiency across almost every domain.
6+
7+
This repository features structured Python programs, organized by concept and module, making it ideal for learning or quick reference.
8+
9+
---
10+
11+
## 📁 Sub-folders
12+
13+
* Dictionaries
14+
* For Loop
15+
* Functions
16+
* If-Else-Elif Statements
17+
* Keywords and Identifiers
18+
* Lists
19+
* Sets
20+
* Strings
21+
* Tkinter
22+
* Try-Except-Finally Statements
23+
* Tuples
24+
* While Loop
25+
26+
---
27+
28+
## 🧩 Steps to Clone and Run this Repository
29+
30+
To get a local copy of this repository, follow these steps:
31+
32+
1. **Run the `git clone` command** to make a copy of this repository on your local machine:
33+
```bash
34+
git clone [https://github.com/rh3nium/Python](https://github.com/rh3nium/Python)
35+
```
36+
2. **Navigate to the folder:**
37+
```bash
38+
cd Python
39+
```
40+
3. **Run any Python file** using the interpreter:
41+
```bash
42+
python filename.py
43+
# OR (depending on your system configuration)
44+
python3 filename.py
45+
```
46+
47+
---
48+
49+
## ⚙️ Setting up Python
50+
51+
To execute Python programs on your computer, you need the **Python IDLE**.
152

253
### Python IDLE Installation and Setup
354
Steps to download and set up the Python Integrated Development Environment:
@@ -6,3 +57,21 @@ Steps to download and set up the Python Integrated Development Environment:
657
3. Click the 'Download Python' button in yellow color.
758
4. Open the downloaded file and go through a few more steps in the installation process in a pop-up window.
859
5. Run the Python IDLE application.
60+
61+
**Verification:** After installation, verify by running the following command in your Terminal or Command Prompt:
62+
```bash
63+
python --version
64+
# OR
65+
python3 --version
66+
```
67+
You are now ready to write and execute Python programs.
68+
69+
<hr>
70+
71+
### Alternative Setup: Using VS Code
72+
73+
If you prefer using **Visual Studio Code (VS Code)**, follow these additional steps for a seamless development experience:
74+
75+
1. **Install VS Code:** Download and install VS Code from the [official website](https://code.visualstudio.com/).
76+
2. **Install the Python Extension:** Open VS Code and install the official **Python Extension** developed by Microsoft. This extension provides features like IntelliSense, debugging, and code formatting.
77+
3. **Run Code:** Open a Python file (`.py`) in VS Code and click the **Run** button (a small triangle icon) in the top right corner, or use the shortcut `Ctrl + F5` to execute the script in the integrated terminal.

0 commit comments

Comments
 (0)