Skip to content

Commit c4ea382

Browse files
authored
Update Introduction.md
1 parent 44a343f commit c4ea382

1 file changed

Lines changed: 14 additions & 12 deletions

File tree

Basic/Introduction.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
1-
## What is python?
1+
## Python
2+
3+
#### What is python?
24
Python is high level language now a days most commonly used by scientists, data analysist, and too
35
many people to solving real time problems
46

5-
## Who can learn python?
7+
#### Who can learn python?
68
Anyone. Even those people who doesn't know any other programing language.
79

8-
## Why should use Python?
10+
#### Why should use Python?
911
- Beginner Friendliness
1012
- Easy to Understand
1113
- Very Flexible
1214
- Scalability
1315

14-
## How many python version?
16+
#### How many python version?
1517
There are 2 python version both are developing simultaneously
1618
- python 2.x
1719
- python 3.x
1820

19-
## Which version should I use?
21+
#### Which version should I use?
2022
- Although Python 2.7 is still widely used, Python 3 adoption is growing quickly.
2123
- In 2016, 71.9% of projects used Python 2.7,but by 2017, it had fallen to 63.7%.
2224
- This signals that the programming community is turning to Python 3–albeit gradually–when developing real-world applications.
2325
- Python 2 is Legacy but python 3 is Future.
2426
- So prefer python 3
2527

26-
## Some notable difference between python 2 and python 3
28+
#### Some notable difference between python 2 and python 3
2729

2830
- There is better unicode support in python 3
2931
- Python 3 has improved division integer
@@ -42,22 +44,22 @@ Python2:print "add here text"
4244
python3:print("ass here text")
4345
```
4446

45-
## As a beginer,should i learn Python 2 or Python 3 in 2019
47+
#### As a beginer,should i learn Python 2 or Python 3 in 2019
4648
The simple answer? Learn the latest version
4749

4850

49-
## Which ide is best for python learning
51+
#### Which ide is best for python learning
5052
-If you are beginner stage of python then do not use any third party ide. use python default idle that will help u to remember the syntaxes and indentation.
5153

52-
## Some of the most widely used idle
54+
#### Some of the most widely used idle
5355
- Pycharam
5456
- Jupyter notebook
5557
- spyder
5658
- Vs code
5759
- Eclipse
5860
- Atom
5961

60-
## How to install and setup python on your local machine?
62+
#### How to install and setup python on your local machine?
6163
- Before searching exe file first collect your operating system details such as operating system platform(windows)
6264
Then bit version of os (32 bit,64 bit)
6365
- Now visit https://www.python.org/downloads/release
@@ -69,9 +71,9 @@ actually python shell
6971
- for checking proper installation
7072
On python shell just write
7173
```python
72-
print("I am from terminal") And hit enter
74+
print("I am from terminal")
7375
```
74-
76+
And hit enter
7577
Now result will display in next line
7678

7779
Now you have done successfully python installation

0 commit comments

Comments
 (0)