Skip to content

Commit 586dda5

Browse files
Bushra RahmanBushra Rahman
authored andcommitted
Updated docs
1 parent eb51874 commit 586dda5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/python/intro-python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ You can run this code in any Python interpreter, and it will display the message
7272
4. Verify installation by typing `python --version` in the terminal or command prompt.
7373
7474
75-
### Why Python is So Popular?
75+
### Why is Python so Popular?
7676
7777
Python has gained massive popularity across industries and educational institutions because of the following reasons:
7878
@@ -86,7 +86,7 @@ Python has gained massive popularity across industries and educational instituti
8686
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.
8787
8888
* **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.
9090
9191
* **Strong Community Support**
9292
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
9797
9898
## Conclusion
9999
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.

docs/python/python_oops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class BankAccount:
6767

6868
4. Inheritance - One class can inherit from another.
6969

70-
📌 **Use Case**: car (parent) class is getting inherited by (child) ElectricCar
70+
📌 **Use Case**: car (parent) class is getting inherited by (child) Electric Car
7171

7272
```python
7373
class ElectricCar(Car):

docs/python/python_operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tags:
1818

1919
# Python Operators
2020

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.
2222

2323

2424
Used to perform basic mathematical operations:

0 commit comments

Comments
 (0)