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: docs/intro/community.rst
+20-9Lines changed: 20 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,30 +4,35 @@ The Community
4
4
BDFL
5
5
----
6
6
7
-
Guido van Rossum, the creator of Python, is often referred to as the BDFL — the Benevolent Dictator For Life.
7
+
Guido van Rossum, the creator of Python, is often referred to as the BDFL — the
8
+
Benevolent Dictator For Life.
8
9
9
10
10
11
11
12
Python Software Foundation
12
13
--------------------------
13
14
14
-
The mission of the Python Software Foundation is to promote, protect, and advance the Python programming language, and to support and facilitate the growth of a diverse and international community of Python programmers.
15
+
The mission of the Python Software Foundation is to promote, protect, and
16
+
advance the Python programming language, and to support and facilitate the
17
+
growth of a diverse and international community of Python programmers.
15
18
16
19
`Learn More about the PSF <http://www.python.org/psf/>`_.
17
20
18
21
19
22
PEPs
20
23
----
21
24
22
-
PEPs are *Python Enhancement Proposals*. They describe changes to Python itself, or the standards around it.
25
+
PEPs are *Python Enhancement Proposals*. They describe changes to Python itself,
26
+
or the standards around it.
23
27
24
28
There are three different types of PEPs (as defined by `PEP1 <http://www.python.org/dev/peps/pep-0001/>`_):
25
29
26
30
**Standards**
27
31
Describes a new feature or implementation.
28
32
29
33
**Informational**
30
-
Describes a design issue, general guidelines, or information to the community.
34
+
Describes a design issue, general guidelines, or information to the
35
+
community.
31
36
32
37
**Process**
33
38
Describes a process related to Python.
@@ -45,29 +50,35 @@ There are a few PEPs that could be considered required reading:
45
50
A list of 19 statements that briefly explain the philosophy behind Python.
The major events for the Python community are developer conferences. The two most notable conferences are PyCon, which is held in the US, and its European sibling, EuroPython.
72
+
The major events for the Python community are developer conferences. The two
73
+
most notable conferences are PyCon, which is held in the US, and its European
74
+
sibling, EuroPython.
66
75
67
76
A comprehensive list of conferences is maintained `at pycon.org <http://www.pycon.org/>`_.
68
77
69
78
70
79
Python User Groups
71
80
--------------------------
72
81
73
-
User Groups are where a bunch of Python developers meet to present or talk about Python topics of interest. A list of local user groups is maintained at the `Python Software Foundation Wiki <http://wiki.python.org/moin/LocalUserGroups>`_.
82
+
User Groups are where a bunch of Python developers meet to present or talk
83
+
about Python topics of interest. A list of local user groups is maintained at
84
+
the `Python Software Foundation Wiki <http://wiki.python.org/moin/LocalUserGroups>`_.
Copy file name to clipboardExpand all lines: docs/intro/learning.rst
+31-22Lines changed: 31 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,62 +7,70 @@ Beginner
7
7
Learn Python Interactive Tutorial
8
8
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9
9
10
-
Learnpython.org is an easy non-intimidating way to get introduced to python. The website takes the same approach used on the popular `Try Ruby <http://tryruby.org/>`_ website, it has an interactive python interpreter built into the site that allows you to go through the lessons without having to install Python locally.
10
+
Learnpython.org is an easy non-intimidating way to get introduced to python.
11
+
The website takes the same approach used on the popular `Try Ruby <http://tryruby.org/>`_
12
+
website, it has an interactive python interpreter built into the site that
13
+
allows you to go through the lessons without having to install Python locally.
11
14
12
15
`Learn Python <http://www.learnpython.org/>`_
13
16
14
17
Learn Python the Hard Way
15
18
~~~~~~~~~~~~~~~~~~~~~~~~~
16
19
17
-
This is an excellent beginner programmer's guide to Python. It covers "hello world" from the console to the web.
20
+
This is an excellent beginner programmer's guide to Python. It covers "hello
21
+
world" from the console to the web.
18
22
19
23
`Learn Python the Hard Way <http://learnpythonthehardway.org/book/>`_
20
24
21
25
22
26
Crash into Python
23
27
~~~~~~~~~~~~~~~~~
24
28
25
-
Also known as *Python for Programmers with 3 Hours*, this guide gives experienced developers from other languages a crash course on Python.
29
+
Also known as *Python for Programmers with 3 Hours*, this guide gives
30
+
experienced developers from other languages a crash course on Python.
26
31
27
32
`Crash into Python <http://stephensugden.com/crash_into_python/>`_
28
33
29
34
30
35
Dive Into Python 3
31
36
~~~~~~~~~~~~~~~~~~
32
37
33
-
Dive Into Python 3 is a good book for those ready to jump in to Python 3. It's a
34
-
good read if you are moving from Python 2 to 3 or if you already have some
38
+
Dive Into Python 3 is a good book for those ready to jump in to Python 3. It's
39
+
a good read if you are moving from Python 2 to 3 or if you already have some
35
40
experience programming in another language.
36
41
37
42
`Dive Into Python 3 <http://diveintopython3.ep.io/>`_
38
43
39
44
Think Python: How to Think Like a Computer Scientist
0 commit comments