-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwhat_is_python.html
More file actions
108 lines (108 loc) · 3.47 KB
/
Copy pathwhat_is_python.html
File metadata and controls
108 lines (108 loc) · 3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=yes"
/>
<title>what_is_python</title>
<style type="text/css">
code {
white-space: pre-wrap;
}
span.smallcaps {
font-variant: small-caps;
}
span.underline {
text-decoration: underline;
}
div.column {
display: inline-block;
vertical-align: top;
width: 50%;
}
</style>
</head>
<body>
<h1 id="what-is-python">What is Python</h1>
<p>
Python is a popular programming language. It was created in 1991 by Guido
van Rossum.
</p>
<p>
Python is an easy to learn, powerful programming language. It has
efficient high-level data structures and a simple but effective approach
to object-oriented programming. Python’s elegant syntax and dynamic
typing, together with its interpreted nature, make it an ideal language
for scripting and rapid application development in many areas on most
platforms.
</p>
<p>It is used for:</p>
<ul>
<li>web development (server-side),</li>
<li>software development,</li>
<li>mathematics,</li>
<li>system scripting.</li>
</ul>
<h2 id="what-can-python-do">What can Python do?</h2>
<ul>
<li>Python can be used on a server to create web applications.</li>
<li>Python can be used alongside software to create workflows.</li>
<li>
Python can connect to database systems. It can also read and modify
files.
</li>
<li>
Python can be used to handle big data and perform complex mathematics.
</li>
<li>
Python can be used for rapid prototyping, or for production-ready
software development.
</li>
</ul>
<h2 id="why-python">Why Python?</h2>
<ul>
<li>
Python works on different platforms (Windows, Mac, Linux, Raspberry Pi,
etc).
</li>
<li>Python has a simple syntax similar to the English language.</li>
<li>
Python has syntax that allows developers to write programs with fewer
lines than some other programming languages.
</li>
<li>
Python runs on an interpreter system, meaning that code can be executed
as soon as it is written. This means that prototyping can be very quick.
</li>
<li>
Python can be treated in a procedural way, an object-orientated way or a
functional way.
</li>
</ul>
<h2 id="good-to-know">Good to know</h2>
<ul>
<li>
The most recent major version of Python is Python 3, which we shall be
using in this tutorial. However, Python 2, although not being updated
with anything other than security updates, is still quite popular.
</li>
<li>
In this tutorial Python will be written in a text editor. It is possible
to write Python in an Integrated Development Environment, such as
Thonny, Pycharm, Netbeans or Eclipse which are particularly useful when
managing larger collections of Python files.
</li>
</ul>
<h2 id="references">References</h2>
<ul>
<li>
<a href="https://www.w3schools.com/python/python_intro.asp"
>w3schools.com</a
>
</li>
</ul>
</body>
</html>