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: Basic/Introduction.md
+14-12Lines changed: 14 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,29 +1,31 @@
1
-
## What is python?
1
+
## Python
2
+
3
+
#### What is python?
2
4
Python is high level language now a days most commonly used by scientists, data analysist, and too
3
5
many people to solving real time problems
4
6
5
-
## Who can learn python?
7
+
####Who can learn python?
6
8
Anyone. Even those people who doesn't know any other programing language.
7
9
8
-
## Why should use Python?
10
+
####Why should use Python?
9
11
- Beginner Friendliness
10
12
- Easy to Understand
11
13
- Very Flexible
12
14
- Scalability
13
15
14
-
## How many python version?
16
+
####How many python version?
15
17
There are 2 python version both are developing simultaneously
16
18
- python 2.x
17
19
- python 3.x
18
20
19
-
## Which version should I use?
21
+
####Which version should I use?
20
22
- Although Python 2.7 is still widely used, Python 3 adoption is growing quickly.
21
23
- In 2016, 71.9% of projects used Python 2.7,but by 2017, it had fallen to 63.7%.
22
24
- This signals that the programming community is turning to Python 3–albeit gradually–when developing real-world applications.
23
25
- Python 2 is Legacy but python 3 is Future.
24
26
- So prefer python 3
25
27
26
-
## Some notable difference between python 2 and python 3
28
+
####Some notable difference between python 2 and python 3
27
29
28
30
- There is better unicode support in python 3
29
31
- Python 3 has improved division integer
@@ -42,22 +44,22 @@ Python2:print "add here text"
42
44
python3:print("ass here text")
43
45
```
44
46
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
46
48
The simple answer? Learn the latest version
47
49
48
50
49
-
## Which ide is best for python learning
51
+
####Which ide is best for python learning
50
52
-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.
51
53
52
-
## Some of the most widely used idle
54
+
####Some of the most widely used idle
53
55
- Pycharam
54
56
- Jupyter notebook
55
57
- spyder
56
58
- Vs code
57
59
- Eclipse
58
60
- Atom
59
61
60
-
## How to install and setup python on your local machine?
62
+
####How to install and setup python on your local machine?
61
63
- Before searching exe file first collect your operating system details such as operating system platform(windows)
62
64
Then bit version of os (32 bit,64 bit)
63
65
- Now visit https://www.python.org/downloads/release
@@ -69,9 +71,9 @@ actually python shell
69
71
- for checking proper installation
70
72
On python shell just write
71
73
```python
72
-
print("I am from terminal") And hit enter
74
+
print("I am from terminal")
73
75
```
74
-
76
+
And hit enter
75
77
Now result will display in next line
76
78
77
79
Now you have done successfully python installation
0 commit comments