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
Copy file name to clipboardExpand all lines: docs/python/intro-python.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ You can run this code in any Python interpreter, and it will display the message
72
72
4. Verify installation by typing `python --version` in the terminal or command prompt.
73
73
74
74
75
-
### Why Python is So Popular?
75
+
### Why is Python so Popular?
76
76
77
77
Python has gained massive popularity across industries and educational institutions because of the following reasons:
78
78
@@ -86,7 +86,7 @@ Python has gained massive popularity across industries and educational instituti
86
86
Python offers a rich standard library and thousands of third-party packages (like NumPy, Pandas, Flask, Django, TensorFlow, etc.) to build anything from simple scripts to complex systems.
87
87
88
88
* **Cross-platform Compatibility**
89
-
Python runs on all major operating systems (Windows, macOS, Linux), making it accessible and flexible.
89
+
Python runs on all major operating systems (Windows, macOS, Linux) making it accessible and flexible.
90
90
91
91
* **Strong Community Support**
92
92
Python has a huge global community, active forums, and abundant learning resources for beginners and professionals alike.
@@ -97,4 +97,4 @@ Python has gained massive popularity across industries and educational instituti
97
97
98
98
## Conclusion
99
99
100
-
Python is a powerful and versatile programming language that is easy to learn and widely used across different domains. Its simple syntax, vast libraries, and strong community support make it an excellent choice for both beginners and experienced developers.
100
+
Python is a powerful and versatile programming language that is easy to learn and widely used across different domains. Its simple syntax, vast libraries and strong community support make it an excellent choice for both beginners and experienced developers.
Copy file name to clipboardExpand all lines: docs/python/python-casting.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ tags:
16
16
17
17
---
18
18
19
-
# Python Casting
19
+
# Type Casting
20
20
21
21
In Python, **casting** is the process of converting a variable from one type to another. Python has built-in functions for converting between data types.
Copy file name to clipboardExpand all lines: docs/python/python-list.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ tags:
18
18
---
19
19
20
20
21
-
# Python Lists
21
+
# Lists in Python
22
22
23
23
A **List** in Python is a data structure that allows you to store multiple items in a single variable. Lists are **ordered**, **mutable**, and **can contain elements of different data types**.
Copy file name to clipboardExpand all lines: docs/python/python_oops.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ tags:
16
16
---
17
17
18
18
19
-
# Python OOPs
19
+
# Python OOPs concept
20
20
21
21
**OOP** is a way of organizing code that uses objects and classes to represent real-world entities and their behavior. In OOP, object has attributes thing that has specific data and can perform certain actions using methods.
22
22
@@ -67,7 +67,7 @@ class BankAccount:
67
67
68
68
4. Inheritance - One class can inherit from another.
69
69
70
-
📌 **Use Case**: car (parent) class is getting inherited by (child) ElectricCar
70
+
📌 **Use Case**: Car (parent) class is inherited by ElectricCar (child) class
Copy file name to clipboardExpand all lines: docs/python/python_operators.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ tags:
18
18
19
19
# Python Operators
20
20
21
-
In Python, **operators** are special symbols used to perform operations on variables and values. Python supports a wide variety of operators categorized based on their functionality.
21
+
In Python, **operators** are special symbols used to perform operations on variables and values. Python supports a wide range of operators categorized based on their functionality.
Copy file name to clipboardExpand all lines: docs/python/setup-environment.md
+23-21Lines changed: 23 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ description: In this tutorial, you will learn how to set up your development env
21
21
22
22
Install Python
23
23
24
-
### Step 1: Let’s Download the git
24
+
### Step 1: Let’s Download the git.
25
25
26
26
1. Go to the [Git Website](https://git-scm.com/) and click on download for windows button.
27
27
@@ -30,77 +30,77 @@ Install Python
30
30
</BrowserWindow>
31
31
32
32
33
-
### Step 2: Select your Version you want to insatll.
33
+
### Step 2: Select your Version you want to install.
34
34
35
35
1. Get your Installer:
36
36
37
-
Based on the current version of windows you can choose to have standalone installer or windows insaller to get started with. As my system is 64bit i will choose here 64bit, you can get know which system you are using by going to``This PC`` icon right click on ``Properties`` Check under the system type.
37
+
Based on your current version of Windows, you can choose either the standalone installer or Windows installer to get started. Since my system is 64-bit, I'll choose the 64-bit option. You can check which system type you have by right clicking``This PC`` icon, selecting ``Properties``, and looking under ``System type``.
-1.On the next screen, click next on Public Licence.
53
53
-2. Choose the location as default and click on Next
54
54
55
55
56
56
57
57
### Step 3: Understanding the Interface.
58
58
59
-
Next step, Git Will ask you to install couple of components you can checko on additional icons to add on Desktop and leave the rest as default and click on the Next.
59
+
In the next step, Git will ask you to install couple of components. You can check on additional icons to add on Desktop and leave the rest as default and click on Next.
60
60
61
-
- 1. The next screen click next , make sure the start folder name is Git.
62
-
- 2. Next option is to choose the default editor you can use your editor, im using visual studio code. or keep Vim as the default editor
61
+
- 1. On the next screen click next , make sure the start folder name is Git.
62
+
- 2. Next option is to choose the default editor you can use your editor, I'm using Visual Studio Code. Or keep Vim as the default editor.
### Step 5: Adjusting name of the repo setting in Git
70
+
### Step 5: Adjusting name of the repo setting in Git.
71
71
72
-
This stage it will ask you to Choose a initial branch in new repository, it would be ideal approach to give the second option, as we move further it gives us flexibility to change the intial branch name , like main master, trunk.
72
+
At this stage it will ask you to choose an initial branch in a new repository, it would be ideal approach to choose the second option, as we move further it gives us flexibility to change the intial branch name , like main master, trunk.
Congratulations! The Git Setup has been finished and now you can launch the GitHub.
101
+
Congratulations! The Git setup is now complete and you can launch GitHub.
102
102
103
-
After that setup, you can see in your PC’s application list there are few new apps are added like ‘Git Bash,’ ‘Git GUI,’ ‘Git CMD.’ However, we will mostly use Git Bash for uploading our projects.
103
+
After installation, you'll find new application in your PC’s program list, such as ‘Git Bash’, ‘Git GUI’, ‘Git CMD’. We'll mainly use Git Bash for uploading our projects.
104
104
105
105
Execute the below command to see your current version of git in Git CMD or windows command promt. Git Installation on Windows is completed.
106
106
@@ -111,4 +111,6 @@ Install Python
111
111
112
112
## Conclusion
113
113
114
-
In conclusion, I hope you enjoyed reading this article on “Setting up your Git Enviornment?”. In the next post, will be discussing using Git to create a Repository and clone a project Github. Signing off Sanjay Viswanathan.
114
+
I hope you enjoyed reading this article on “Setting up your Git Enviornment”. In the next post, we'll discuss how to create a Repository and clone a project from Github.
0 commit comments