-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutPython.html
More file actions
99 lines (99 loc) · 4.88 KB
/
AboutPython.html
File metadata and controls
99 lines (99 loc) · 4.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Python</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<div id="top">
<div id="header">
<img id="pythonimg" src="python.png" alt="no image">
<div id="corner">
<div id="settings">
<p id="textsize">Text Size:<a class="sizes" href="#">Normal</a><a id="separator"> | </a><a class="sizes" href="#">Large</a></p>
</div>
<form id="search">
<input id="searchbox" type="text" name="searchbox" value="Search">
<input id="submit" type="submit" value="Go">
</form>
</div>
</div>
<div id="body">
<div id="navbar">
<p class="navbarText">About</p>
<p class="navbarText">Downloads</p>
<p class="navbarText">Documentation</p>
<p class="navbarText">Community</p>
<p class="navbarText">News</p>
<p class="navbarText">Events</p>
</div>
<div id="list">
<ul id="docs">
<li>Docs</li>
</ul>
<ul id="av">
<li>Audio/Video Talks</li>
</ul>
<ul id="beginner">
<li>Beginner's Guide</li>
</ul>
<ul id="developer">
<li>Developer's Guide</li>
</ul>
<ul id="pep">
<li>PEP Index</li>
</ul>
<ul id="python">
<li>Python Books</li>
</ul>
<ul id="faq">
<li>FAQ</li>
</ul>
</div>
<div id="bodytext">
<p>First appearing in 1991, Python is a general-purpose, high-level, interpreted programming language whose design focus emphasizes code readability. Whether for processing/analyzing data to powering man well-known applications, Python is not only a great language for new programmers but also powerful enough for seasoned developers building whatever they can think of. </p>
<ul>
<li>Beautiful is better than ugly;</li>
<li>Explicit is better than implicit;</li>
<li>Simple is better than complex;</li>
<li>Complex is better than complicated;</li>
<li>Readbility counts;</li>
<li style="color:white;font-style:normal">The Zen of Python</li>
</ul>
</div>
</div>
</div>
<div id="white">
<div class="textbox">
<h2>Getting Started</h2>
<p>Python can be easy to pick up whether you're a first time programmer or you're experienced with other languages. The following pages are a useful first step to get on your way writing programs with Python!</p>
<ul>
<li>Beginner's Guide, Programmers</li>
<li>Beginner's Guide, Non-Programmers</li>
<li>Code sample and snippets for Beginners</li>
</ul>
</div>
<div class="textbox">
<h2>Applications</h2>
<p>The <a id="bluetext">Python Package Index(PyPI)</a> hosts thousands of third-party modules for Python. Both Python's standard library and the community-contributed modules allow for endless possibilities.</p>
<ul>
<li>Web and Internet Development</li>
<li>Database Access</li>
<li>Desktop GUIs</li>
<li>Network Programming</li>
<li>Software and Game Development</li>
</ul>
</div>
</div>
<div id="footer">
<a class="footlink" href="#">Help and General Contact</a>
<a class="footlink" href="#">Diversity Initiatives</a>
<a class="footlink" href="#">Submit Website Bugs</a>
<p id="copyright">Copyright ©2001-2016.</p>
</div>
</div>
</body>
</html>