-
Notifications
You must be signed in to change notification settings - Fork 3
/
whatnow.html
293 lines (293 loc) · 9.86 KB
/
whatnow.html
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!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>whatnow</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>
<h3 id="navigation">Navigation</h3>
<ul>
<li>
<a href="https://docs.python.org/3/genindex.html" title="General Index"
>index</a
>
</li>
<li>
<a
href="https://docs.python.org/3/py-modindex.html"
title="Python Module Index"
>modules</a
>
|
</li>
<li>
<a
href="interactive.html"
title="14. Interactive Input Editing and History Substitution"
>next</a
>
|
</li>
<li>
<a href="venv.html" title="12. Virtual Environments and Packages"
>previous</a
>
|
</li>
<li><img src="../_static/py.png" /></li>
<li><a href="https://www.python.org/">Python</a> »</li>
<li>
<a href="https://docs.python.org/3/index.html">3.9.5 Documentation</a> »
</li>
<li><a href="index.html">The Python Tutorial</a> »</li>
<li></li>
</ul>
<p><span id="tut-whatnow"></span></p>
<h1 id="what-now">
<span class="section-number">13. </span>What Now?<a
href="#what-now"
class="headerlink"
title="Permalink to this headline"
>¶</a
>
</h1>
<p>
Reading this tutorial has probably reinforced your interest in using
Python — you should be eager to apply Python to solving your real-world
problems. Where should you go to learn more?
</p>
<p>
This tutorial is part of Python’s documentation set. Some other documents
in the set are:
</p>
<ul>
<li>
<p>
<a
href="https://docs.python.org/3/library/index.html#library-index"
class="reference internal"
><span class="std std-ref">The Python Standard Library</span></a
>:
</p>
<p>
You should browse through this manual, which gives complete (though
terse) reference material about types, functions, and the modules in
the standard library. The standard Python distribution includes a
<em>lot</em> of additional code. There are modules to read Unix
mailboxes, retrieve documents via HTTP, generate random numbers, parse
command-line options, write CGI programs, compress data, and many
other tasks. Skimming through the Library Reference will give you an
idea of what’s available.
</p>
</li>
<li>
<p>
<a
href="https://docs.python.org/3/installing/index.html#installing-index"
class="reference internal"
><span class="std std-ref">Installing Python Modules</span></a
>
explains how to install additional modules written by other Python
users.
</p>
</li>
<li>
<p>
<a
href="https://docs.python.org/3/reference/index.html#reference-index"
class="reference internal"
><span class="std std-ref">The Python Language Reference</span></a
>: A detailed explanation of Python’s syntax and semantics. It’s heavy
reading, but is useful as a complete guide to the language itself.
</p>
</li>
</ul>
<p>More Python resources:</p>
<ul>
<li>
<p>
<a href="https://www.python.org/" class="reference external"
>https://www.python.org</a
>: The major Python Web site. It contains code, documentation, and
pointers to Python-related pages around the Web. This Web site is
mirrored in various places around the world, such as Europe, Japan,
and Australia; a mirror may be faster than the main site, depending on
your geographical location.
</p>
</li>
<li>
<p>
<a href="https://docs.python.org/" class="reference external"
>https://docs.python.org</a
>: Fast access to Python’s documentation.
</p>
</li>
<li>
<p>
<a href="https://pypi.org/" class="reference external"
>https://pypi.org</a
>: The Python Package Index, previously also nicknamed the Cheese Shop
<a href="#id2" id="id1" class="footnote-reference brackets">1</a>, is
an index of user-created Python modules that are available for
download. Once you begin releasing code, you can register it here so
that others can find it.
</p>
</li>
<li>
<p>
<a
href="https://code.activestate.com/recipes/langs/python/"
class="reference external"
>https://code.activestate.com/recipes/langs/python/</a
>: The Python Cookbook is a sizable collection of code examples,
larger modules, and useful scripts. Particularly notable contributions
are collected in a book also titled Python Cookbook (O’Reilly &
Associates, ISBN 0-596-00797-3.)
</p>
</li>
<li>
<p>
<a href="http://www.pyvideo.org/" class="reference external"
>http://www.pyvideo.org</a
>
collects links to Python-related videos from conferences and
user-group meetings.
</p>
</li>
<li>
<p>
<a href="https://scipy.org/" class="reference external"
>https://scipy.org</a
>: The Scientific Python project includes modules for fast array
computations and manipulations plus a host of packages for such things
as linear algebra, Fourier transforms, non-linear solvers, random
number distributions, statistical analysis and the like.
</p>
</li>
</ul>
<p>
For Python-related questions and problem reports, you can post to the
newsgroup <em>comp.lang.python</em>, or send them to the mailing list at
<a href="mailto:python-list%40python.org" class="reference external"
>python-list<span>@</span>python<span>.</span>org</a
>. The newsgroup and mailing list are gatewayed, so messages posted to one
will automatically be forwarded to the other. There are hundreds of
postings a day, asking (and answering) questions, suggesting new features,
and announcing new modules. Mailing list archives are available at
<a href="https://mail.python.org/pipermail/" class="reference external"
>https://mail.python.org/pipermail/</a
>.
</p>
<p>
Before posting, be sure to check the list of
<a
href="https://docs.python.org/3/faq/index.html#faq-index"
class="reference internal"
><span class="std std-ref">Frequently Asked Questions</span></a
>
(also called the FAQ). The FAQ answers many of the questions that come up
again and again, and may already contain the solution for your problem.
</p>
<p>Footnotes</p>
<p>
<span class="brackets"><a href="#id1" class="fn-backref">1</a></span
><br />
“Cheese Shop” is a Monty Python’s sketch: a customer enters a cheese shop,
but whatever cheese he asks for, the clerk says it’s missing.
</p>
<h4 id="previous-topic">Previous topic</h4>
<p>
<a href="venv.html" title="previous chapter"
><span class="section-number">12. </span>Virtual Environments and
Packages</a
>
</p>
<h4 id="next-topic">Next topic</h4>
<p>
<a href="interactive.html" title="next chapter"
><span class="section-number">14. </span>Interactive Input Editing and
History Substitution</a
>
</p>
<h3 id="this-page">This Page</h3>
<ul>
<li><a href="https://docs.python.org/3/bugs.html">Report a Bug</a></li>
<li>
<a
href="https://github.com/python/cpython/blob/3.9/Doc/tutorial/whatnow.rst"
>Show Source</a
>
</li>
</ul>
<h3 id="navigation-1">Navigation</h3>
<ul>
<li>
<a href="https://docs.python.org/3/genindex.html" title="General Index"
>index</a
>
</li>
<li>
<a
href="https://docs.python.org/3/py-modindex.html"
title="Python Module Index"
>modules</a
>
|
</li>
<li>
<a
href="interactive.html"
title="14. Interactive Input Editing and History Substitution"
>next</a
>
|
</li>
<li>
<a href="venv.html" title="12. Virtual Environments and Packages"
>previous</a
>
|
</li>
<li><img src="../_static/py.png" /></li>
<li><a href="https://www.python.org/">Python</a> »</li>
<li>
<a href="https://docs.python.org/3/index.html">3.9.5 Documentation</a> »
</li>
<li><a href="index.html">The Python Tutorial</a> »</li>
<li></li>
</ul>
<p>
©
<a href="https://docs.python.org/3/copyright.html">Copyright</a>
2001-2021, Python Software Foundation.<br />
The Python Software Foundation is a non-profit corporation.
<a href="https://www.python.org/psf/donations/">Please donate.</a>
</p>
<p>
Last updated on May 30, 2021.
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 2.4.4.
</p>
</body>
</html>