You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**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:
To execute Python programs on your computer, you need the **Python IDLE**.
1
52
2
53
### Python IDLE Installation and Setup
3
54
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:
6
57
3. Click the 'Download Python' button in yellow color.
7
58
4. Open the downloaded file and go through a few more steps in the installation process in a pop-up window.
8
59
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