-
Notifications
You must be signed in to change notification settings - Fork 211
/
index.html
1350 lines (829 loc) · 65.5 KB
/
index.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>PEP 8: The Style Guide for Python Code</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- JavaScripts! -->
<script src="js/anchor.min.js"></script>
<script src="js/table_of_contents.js"></script>
<!-- FONT -->
<link rel="stylesheet" type="text/css" href="/fonts/425974/1F0A82D67708082E5.css" />
<!-- CSS -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/prism.css">
<link rel="stylesheet" href="css/table_of_contents.css">
<style>
body {
font-size: 1.8rem;
text-rendering: optimizeLegibility;
}
/* Disable border around code blocks. */
code.language-python {border: none;}
/* Disable background for code blocks */
pre.language-python {background: none;}
/* Don't display line-feed charecters */
.token.lf:before {content: '';}
.token.comment {font-style: italic;}
.token.punctuation {color: #585858;}
.token.operator {color: #905947;}
.token.number {color: #b60065;}
.token.keyword {color: #007cb1;}
.token.function {color: #c6425d;}
/* Disable background for inline codeblocks. */
code {
background: none;
border: none;
}
/* Operator Pro typeface for code examples. */
code[class*="language-"], code {
font-family: "Operator Mono A", "Operator Mono B";
font-style: normal;
font-weight: 400;
font-size: 1.6rem;
}
pre.language-python {
padding-top: 0px;
}
/* Make inline code examples stand out. */
code {
font-weight: 600;
font-size: 1.6rem;
padding: 0;
}
h1, h2, h3, h4 {
font-weight: 400;
}
body {
font-style: normal;
font-weight: 400;
font-family: "Ideal Sans A", "Ideal Sans B";
font-variant-ligatures: discretionary-ligatures;
}
h1 {
/* font-variant: small-caps; Problems with Safari. */
font-family: "Operator A", "Operator B";
}
h2 {
font-family: "Operator A", "Operator B";
font-style: italic;
font-size: 3.5rem;
}
h3 {
/*font-style: italic;*/
font-family: "Operator A", "Operator B";
}
/* li p {
padding-left: 1em;
}*/
ol {
padding-left: 2em;
padding-right: 1em;
}
ol {
margin: 0 0 1.5em;
counter-reset: item;
}
ol > li {
/*margin: 0;*/
/*padding: 0 0 0 2em;*/
text-indent: -1.6em;
list-style-type: none;
counter-increment: item;
}
ol > li:before {
display: inline-block;
width: 1em;
padding-right: 0.5em;
font-weight: bold;
text-align: right;
content: counter(item) ".";
}
.title {
font-family: "Operator A", "Operator B";
font-style: normal;
}
ul ol {
font-size: 100%;
margin-bottom: 2em;
}
ul > li {
margin: 0;
padding: 0 0 0 2em;
/*text-indent: -1.5em;*/
display: block;
list-style-type: none;
/*counter-increment: item;*/
}
/* Green is for go; Red is for stop! */
.yes + pre > code {
border-left: 3px solid rgba(74, 182, 93, 1);
}
.no + pre > code {
border-left: 3px solid rgb(244, 76, 78);
}
/* Firefox is the worst. */
@-moz-document url-prefix() {
h1 {font-variant: normal;}
}
</style>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row" style="margin-top: 15%">
<h1 class="title">PEP 8 — the Style Guide for Python Code</h1>
<div class="twelve columns">
<p class="awesome">This stylized presentation of the well-established <a href="https://www.python.org/dev/peps/pep-0008/">PEP 8</a> was created by <a href="http://kennethreitz.org/bitcoin">Kenneth Reitz</a> (for humans).</p>
</div>
</div>
<div class="row">
<div class="nine columns" style="margin-top: 10%">
<!-- PEP 8 BEGINS -->
<h1 id="introduction">Introduction</h1>
<p>This document gives coding conventions for the Python code comprising the standard library in the main Python distribution. Please see the companion informational PEP describing style guidelines for the C code in the C implementation of Python <a href="#fn1" class="footnoteRef" id="fnref1"><sup>1</sup></a>.</p>
<p>This document and <a href="https://www.python.org/dev/peps/pep-0257/">PEP 257</a> (Docstring Conventions) were adapted from Guido’s original Python Style Guide essay, with some additions from Barry’s style guide <a href="#fn2" class="footnoteRef" id="fnref2"><sup>2</sup></a>.</p>
<p>This style guide evolves over time as additional conventions are identified and past conventions are rendered obsolete by changes in the language itself.</p>
<p>Many projects have their own coding style guidelines. In the event of any conflicts, such project-specific guides take precedence for that project.</p>
<h1 id="a-foolish-consistency-is-the-hobgoblin-of-little-minds">A Foolish Consistency is the Hobgoblin of Little Minds</h1>
<p>One of Guido’s key insights is that code is read much more often than it is written. The guidelines provided here are intended to improve the readability of code and make it consistent across the wide spectrum of Python code. As <a href="https://www.python.org/dev/peps/pep-0020/">PEP 20</a> says, “Readability counts”.</p>
<p>A style guide is about consistency. Consistency with this style guide is important. Consistency within a project is more important. Consistency within one module or function is the most important.</p>
<p>However, know when to be inconsistent—sometimes style guide recommendations just aren't applicable. When in doubt, use your best judgment. Look at other examples and decide what looks best. And don’t hesitate to ask!</p>
<p>In particular: do not break backwards compatibility just to comply with this PEP!</p>
<p>Some other good reasons to ignore a particular guideline:</p>
<div class="row">
<div class="one column"> </div>
<div class="nine columns">
<ol style="list-style-type: decimal">
<li>When applying the guideline would make the code less readable, even for someone who is used to reading code that follows this PEP.</li>
<li>To be consistent with surrounding code that also breaks it (maybe for historic reasons) – although this is also an opportunity to clean up someone else’s mess (in true XP style).</li>
<li>Because the code in question predates the introduction of the guideline and there is no other reason to be modifying that code.</li>
<li>When the code needs to remain compatible with older versions of Python that don’t support the feature recommended by the style guide.</li>
</ol>
</div>
</div>
<h1 id="code-lay-out">Code Layout</h1>
<h2 id="indentation">Indentation</h2>
<p>Use 4 spaces per indentation level.</p>
<p>Continuation lines should align wrapped elements either vertically using Python’s implicit line joining inside parentheses, brackets and braces, or using a <em>hanging indent</em> <a href="#fn3" class="footnoteRef" id="fnref3"><sup>3</sup></a>. When using a hanging indent the following should be considered; there should be no arguments on the first line and further indentation should be used to clearly distinguish itself as a continuation line.</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python"># Aligned with opening delimiter.
foo = long_function_name(var_one, var_two,
var_three, var_four)
# Add 4 spaces (an extra level of indentation) to distinguish arguments from the rest.
def long_function_name(
var_one, var_two, var_three,
var_four):
print(var_one)
# Hanging indents should add a level.
foo = long_function_name(
var_one, var_two,
var_three, var_four)</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python"># Arguments on first line forbidden when not using vertical alignment.
foo = long_function_name(var_one, var_two,
var_three, var_four)
# Further indentation required as indentation is not distinguishable.
def long_function_name(
var_one, var_two, var_three,
var_four):
print(var_one)</code></pre>
<p>The 4-space rule is optional for continuation lines.</p>
<p>Optional:</p>
<pre><code class="language-python"># Hanging indents *may* be indented to other than 4 spaces.
foo = long_function_name(
var_one, var_two,
var_three, var_four)</code></pre>
<a id="if-statements"></a>
<p>When the conditional part of an <code>if</code>-statement is long enough to require that it be written across multiple lines, it’s worth noting that the combination of a two character keyword (i.e. <code>if</code>), plus a single space, plus an opening parenthesis creates a natural 4-space indent for the subsequent lines of the multiline conditional. This can produce a visual conflict with the indented suite of code nested inside the <code>if</code>-statement, which would also naturally be indented to 4 spaces. This PEP takes no explicit position on how (or whether) to further visually distinguish such conditional lines from the nested suite inside the <code>if</code>-statement. Acceptable options in this situation include, but are not limited to:</p>
<pre><code class="language-python"># No extra indentation.
if (this_is_one_thing and
that_is_another_thing):
do_something()
# Add a comment, which will provide some distinction in editors
# supporting syntax highlighting.
if (this_is_one_thing and
that_is_another_thing):
# Since both conditions are true, we can frobnicate.
do_something()
# Add some extra indentation on the conditional continuation line.
if (this_is_one_thing
and that_is_another_thing):
do_something()</code></pre>
<p>(Also see the discussion of whether to break before or after binary operators below.)</p>
<p>The closing brace/bracket/parenthesis on multiline constructs may either line up under the first non-whitespace character of the last line of list, as in:</p>
<pre><code class="language-python">my_list = [
1, 2, 3,
4, 5, 6,
]
result = some_function_that_takes_arguments(
'a', 'b', 'c',
'd', 'e', 'f',
)</code></pre>
<p>or it may be lined up under the first character of the line that starts the multiline construct, as in:</p>
<pre><code class="language-python">my_list = [
1, 2, 3,
4, 5, 6,
]
result = some_function_that_takes_arguments(
'a', 'b', 'c',
'd', 'e', 'f',
)</code></pre>
<h2 id="tabs-or-spaces">Tabs or Spaces?</h2>
<p>Spaces are the preferred indentation method.</p>
<p>Tabs should be used solely to remain consistent with code that is already indented with tabs.</p>
<p>Python 3 disallows mixing the use of tabs and spaces for indentation.</p>
<p>Python 2 code indented with a mixture of tabs and spaces should be converted to using spaces exclusively.</p>
<p>When invoking the Python 2 command line interpreter with the <code>-t</code> option, it issues warnings about code that illegally mixes tabs and spaces. When using <code>-tt</code> these warnings become errors. These options are highly recommended!</p>
<h2 id="maximum-line-length">Maximum Line Length</h2>
<p>Limit all lines to a maximum of 79 characters.</p>
<p>For flowing long blocks of text with fewer structural restrictions (docstrings or comments), the line length should be limited to 72 characters.</p>
<p>Limiting the required editor window width makes it possible to have several files open side-by-side, and works well when using code review tools that present the two versions in adjacent columns.</p>
<p>The default wrapping in most tools disrupts the visual structure of the code, making it more difficult to understand. The limits are chosen to avoid wrapping in editors with the window width set to 80, even if the tool places a marker glyph in the final column when wrapping lines. Some web based tools may not offer dynamic line wrapping at all.</p>
<p>Some teams strongly prefer a longer line length. For code maintained exclusively or primarily by a team that can reach agreement on this issue, it is okay to increase the line length limit up to 99 characters, provided that comments and docstrings are still wrapped at 72 characters.</p>
<p>The Python standard library is conservative and requires limiting lines to 79 characters (and docstrings/comments to 72).</p>
<p>The preferred way of wrapping long lines is by using Python’s implied line continuation inside parentheses, brackets and braces. Long lines can be broken over multiple lines by wrapping expressions in parentheses. These should be used in preference to using a backslash for line continuation.</p>
<p>Backslashes may still be appropriate at times. For example, long, multiple <code>with</code>-statements cannot use implicit continuation, so backslashes are acceptable:</p>
<pre><code class="language-python">with open('/path/to/some/file/you/want/to/read') as file_1, \
open('/path/to/some/file/being/written', 'w') as file_2:
file_2.write(file_1.read())</code></pre>
<p>(See the previous discussion on <a href="#if-statements">multiline if-statements</a> for further thoughts on the indentation of such multiline <code>with</code>-statements.)</p>
<p>Another such case is with <code>assert</code> statements.</p>
<p>Make sure to indent the continued line appropriately.</p>
<h2 id="break-before-or-after-binary-operator">Should a Line Break Before or After a Binary Operator?</h2>
<p class="no">For decades the recommended style was to break after binary operators. But this can hurt readability in two ways: the operators tend to get scattered across different columns on the screen, and each operator is moved away from its operand and onto the previous line. Here, the eye has to do extra work to tell which items are added and which are subtracted:</p>
<pre><code class="language-python"># No: operators sit far away from their operands
income = (gross_wages +
taxable_interest +
(dividends - qualified_dividends) -
ira_deduction -
student_loan_interest)
</code></pre>
<p>To solve this readability problem, mathematicians and their publishers follow the opposite convention. Donald Knuth explains the traditional rule in his <em>Computers and Typesetting</em> series:</p>
<blockquote>“Although formulas within a paragraph always break after binary operations and relations, displayed formulas always break before binary operations” <a href="#fn4" class="footnoteRef" id="fnref4"><sup>4</sup></a>.</blockquote>
<p class="yes">Following the tradition from mathematics usually results in more readable code:</p>
<pre><code class="language-python"># Yes: easy to match operators with operands
income = (gross_wages
+ taxable_interest
+ (dividends - qualified_dividends)
- ira_deduction
- student_loan_interest)
</code></pre>
<p>In Python code, it is permissible to break before or after a binary operator, as long as the convention is consistent locally. For new code Knuth's style is suggested.</p>
<h2 id="blank-lines">Blank Lines</h2>
<p>Surround top-level function and class definitions with two blank lines.</p>
<p>Method definitions inside a class are surrounded by a single blank line.</p>
<p>Extra blank lines may be used (sparingly) to separate groups of related functions. Blank lines may be omitted between a bunch of related one-liners (e.g. a set of dummy implementations).</p>
<p>Use blank lines in functions, sparingly, to indicate logical sections.</p>
<p>Python accepts the control-L (i.e. ^L) form feed character as whitespace; Many tools treat these characters as page separators, so you may use them to separate pages of related sections of your file. Note, some editors and web-based code viewers may not recognize control-L as a form feed and will show another glyph in its place.</p>
<h2 id="source-file-encoding">Source File Encoding</h2>
<p>Code in the core Python distribution should always use UTF-8 (or ASCII in Python 2).</p>
<p>Files using ASCII (in Python 2) or UTF-8 (in Python 3) should not have an encoding declaration.</p>
<p>In the standard library, non-default encodings should be used only for test purposes or when a comment or docstring needs to mention an author name that contains non-ASCII characters; otherwise, using <code>\x</code>, <code>\u</code>, <code>\U</code>, or <code>\N</code> escapes is the preferred way to include non-ASCII data in string literals.</p>
<p>For Python 3.0 and beyond, the following policy is prescribed for the standard library (see <a href="https://www.python.org/dev/peps/pep-3131">PEP 3131</a>): All identifiers in the Python standard library MUST use ASCII-only identifiers, and SHOULD use English words wherever feasible (in many cases, abbreviations and technical terms are used which aren’t English). In addition, string literals and comments must also be in ASCII. The only exceptions are (a) test cases testing the non-ASCII features, and (b) names of authors. Authors whose names are not based on the Latin alphabet (latin-1, ISO/IEC 8859-1 character set) MUST provide a transliteration of their names in this character set.</p>
<p>Open source projects with a global audience are encouraged to adopt a similar policy.</p>
<h2 id="imports">Imports</h2>
<ul>
<li><p>Imports should usually be on separate lines</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">import os
import sys</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">import os, sys</code></pre>
<p>It’s okay to say this though:</p>
<pre><code class="language-python">from subprocess import Popen, PIPE</code></pre></li>
<li><p>Imports are always put at the top of the file, just after any module comments and docstrings, and before module globals and constants.</p>
<p>Imports should be grouped in the following order:</p>
<ol style="list-style-type: decimal">
<li>Standard library imports</li>
<li>Related third party imports</li>
<li>Local application/library specific imports</li>
</ol>
<p>You should put a blank line between each group of imports.</p>
<li><p>Absolute imports are recommended, as they are usually more readable and tend to be better behaved (or at least give better error messages) if the import system is incorrectly configured (such as when a directory inside a package ends up on <code>sys.path</code>):</p>
<pre><code class="language-python">import mypkg.sibling
from mypkg import sibling
from mypkg.sibling import example</code></pre>
<p>However, explicit relative imports are an acceptable alternative to absolute imports, especially when dealing with complex package layouts where using absolute imports would be unnecessarily verbose:</p>
<pre><code class="language-python">from . import sibling
from .sibling import example</code></pre>
<p>Standard library code should avoid complex package layouts and always use absolute imports.</p>
<p>Implicit relative imports should <em>never</em> be used and have been removed in Python 3.</p></li>
<li><p>When importing a class from a class-containing module, it’s usually okay to spell this:</p>
<pre><code class="language-python">from myclass import MyClass
from foo.bar.yourclass import YourClass</code></pre>
<p>If this spelling causes local name clashes, then spell them explicitly :</p>
<pre><code class="language-python">import myclass
import foo.bar.yourclass</code></pre>
<p>and use <code>myclass.MyClass</code> and <code>foo.bar.yourclass.YourClass</code>.</p></li>
<li><p>Wildcard imports (<code>from <module> import *</code>) should be avoided, as they make it unclear which names are present in the namespace, confusing both readers and many automated tools. There is one defensible use case for a wildcard import, which is to republish an internal interface as part of a public API (for example, overwriting a pure Python implementation of an interface with the definitions from an optional accelerator module and exactly which definitions will be overwritten isn’t known in advance).</p>
<p>When republishing names this way, the guidelines below regarding public and internal interfaces still apply.</p></li>
</ul>
<h2 id="module-level-dunder-names">Module Level Dunder Names</h2>
<p>Module level "dunders" (i.e. names with two leading and two trailing underscores) such as <code>__all__</code>, <code>__author__</code>, <code>__version__</code>, etc. should be placed after the module docstring but before any import statements <em>except</em> <code>from __future__</code> imports. Python mandates that future-imports must appear in the module before any other code except docstrings.</p>
<pre><code class="language-python">"""This is the example module.
This module does stuff.
"""
from __future__ import barry_as_FLUFL
__all__ = ['a', 'b', 'c']
__version__ = '0.1'
__author__ = 'Cardinal Biggles'
import os
import sys
</code></pre>
<h1 id="string-quotes">String Quotes</h1>
<p>In Python, single-quoted strings and double-quoted strings are the same. This PEP does not make a recommendation for this. Pick a rule and stick to it. When a string contains single or double quote characters, however, use the other one to avoid backslashes in the string. It improves readability.</p>
<p>For triple-quoted strings, always use double quote characters to be consistent with the docstring convention in <a href="https://www.python.org/dev/peps/pep-0257/">PEP 257</a>.</p>
<h1 id="whitespace-in-expressions-and-statements">Whitespace in Expressions and Statements</h1>
<h2 id="pet-peeves">Pet Peeves</h2>
<p>Avoid extraneous whitespace in the following situations:</p>
<ul>
<li><p>Immediately inside parentheses, brackets or braces:</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">spam(ham[1], {eggs: 2})</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">spam( ham[ 1 ], { eggs: 2 } )</code></pre>
</li>
<li><p>Between a trailing comma and a following close parenthesis:</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">foo = (0,)</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">bar = (0, )</code></pre>
</li>
<li><p>Immediately before a comma, semicolon, or colon:</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">if x == 4: print x, y; x, y = y, x</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">if x == 4 : print x , y ; x , y = y , x</code></pre>
<li><p>However, in a slice the colon acts like a binary operator, and should have equal amounts on either side (treating it as the operator with the lowest priority). In an extended slice, both colons must have the same amount of spacing applied. Exception: when a slice parameter is omitted, the space is omitted.</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">ham[1:9], ham[1:9:3], ham[:9:3], ham[1::3], ham[1:9:]
ham[lower:upper], ham[lower:upper:], ham[lower::step]
ham[lower+offset : upper+offset]
ham[: upper_fn(x) : step_fn(x)], ham[:: step_fn(x)]
ham[lower + offset : upper + offset]</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">ham[lower + offset:upper + offset]
ham[1: 9], ham[1 :9], ham[1:9 :3]
ham[lower : : upper]
ham[ : upper]</code></pre></li>
<li><p>Immediately before the open parenthesis that starts the argument list of a function call:</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">spam(1)</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">spam (1)</code></pre>
<li><p>Immediately before the open parenthesis that starts an indexing or slicing:</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">dct['key'] = lst[index]</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">dct ['key'] = lst [index]</code></pre></li>
<li><p>More than one space around an assignment (or other) operator to align it with another.</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">x = 1
y = 2
long_variable = 3</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">x = 1
y = 2
long_variable = 3</code></pre></li>
</ul>
<h2 id="other-recommendations">Other Recommendations</h2>
<ul>
<li>Avoid trailing whitespace anywhere. Because it’s usually invisible, it can be confusing: e.g. a backslash followed by a space and a newline does not count as a line continuation marker. Some editors don’t preserve it and many projects (like CPython itself) have pre-commit hooks that reject it.</li>
<p></p>
<li>Always surround these binary operators with a single space on either side: assignment (<code>=</code>), augmented assignment (<code>+=</code>, <code>-=</code> etc.), comparisons (<code>==</code>, <code><</code>, <code>></code>, <code>!=</code>, <code><></code>, <code><=</code>, <code>>=</code>, <code>in</code>, <code>not in</code>, <code>is</code>, <code>is not</code>), Booleans (<code>and</code>, <code>or</code>, <code>not</code>).</li>
<p></p>
<li><p>If operators with different priorities are used, consider adding whitespace around the operators with the lowest priority(ies). Use your own judgment; however, never use more than one space, and always have the same amount of whitespace on both sides of a binary operator.</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">i = i + 1
submitted += 1
x = x*2 - 1
hypot2 = x*x + y*y
c = (a+b) * (a-b)</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">i=i+1
submitted +=1
x = x * 2 - 1
hypot2 = x * x + y * y
c = (a + b) * (a - b)</code></pre></li>
<li><p>Function annotations should use the normal rules for colons and always have spaces around the <code>-></code> arrow if present. (See <a href="#function-annotations">Function Annotations</a> below for more about function annotations.)</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">def munge(input: AnyStr): ...
def munge() -> AnyStr: ...</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">def munge(input:AnyStr): ...
def munge()->PosInt: ...</code></pre></li>
<li><p>Don’t use spaces around the <code>=</code> sign when used to indicate a keyword argument,or when used to indicate a default value for an <em>unannotated</em> function parameter.</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">def complex(real, imag=0.0):
return magic(r=real, i=imag)</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">def complex(real, imag = 0.0):
return magic(r = real, i = imag)</code></pre></li>
<li><p>When combining an argument annotation with a default value, however, do use spaces around the <code>=</code> sign:</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">def munge(sep: AnyStr = None): ...
def munge(input: AnyStr, sep: AnyStr = None, limit=1000): ...</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">def munge(sep: AnyStr=None): ...
def munge(input: AnyStr, sep: AnyStr=None, limit = 1000): ...</code></pre></li>
<li><p>Compound statements (multiple statements on the same line) are generally discouraged.</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">if foo == 'blah':
do_blah_thing()
do_one()
do_two()
do_three()</code></pre>
<p class="no"><span>Rather not:</span></p>
<pre><code class="language-python">if foo == 'blah': do_blah_thing()
do_one(); do_two(); do_three()</code></pre></li>
<li><p>While sometimes it’s okay to put an if/for/while with a small body on the same line, never do this for multi-clause statements. Also avoid folding such long lines!</p>
<p class="no"><span>Rather not:</span></p>
<pre><code class="language-python">if foo == 'blah': do_blah_thing()
for x in lst: total += x
while t < 10: t = delay()</code></pre>
<p class="no"><span>Definitely not:</span></p>
<pre><code class="language-python">if foo == 'blah': do_blah_thing()
else: do_non_blah_thing()
try: something()
finally: cleanup()
do_one(); do_two(); do_three(long, argument,
list, like, this)
if foo == 'blah': one(); two(); three()</code></pre></li>
</ul>
<h1 id="when-to-use-trailing-commas">When to Use Trailing Commas</h1>
<p>Trailing commas are usually optional, except they are mandatory when making a tuple of one element (and in Python 2 they have semantics for the <code>print</code> statement). For clarity, it is recommended to surround the latter in (technically redundant) parentheses.</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">FILES = ('setup.cfg',)</code></pre>
<p>OK, but confusing:</p>
<pre><code class="language-python">FILES = 'setup.cfg',</code></pre>
<p>When trailing commas are redundant, they are often helpful when a version control system is used, when a list of values, arguments or imported items is expected to be extended over time. The pattern is to put each value (etc.) on a line by itself, always adding a trailing comma, and add the close parenthesis/bracket/brace on the next line. However it does not make sense to have a trailing comma on the same line as the closing delimiter (except in the above case of singleton tuples).</p>
<p class="yes"><span>Yes:</span></p>
<pre><code class="language-python">FILES = [
'setup.cfg',
'tox.ini',
]
initialize(FILES,
error=True,
)</code></pre>
<p class="no"><span>No:</span></p>
<pre><code class="language-python">FILES = ['setup.cfg', 'tox.ini',]
initialize(FILES, error=True,)</code></pre>
<h1 id="comments">Comments</h1>
<p>Comments that contradict the code are worse than no comments. Always make a priority of keeping the comments up-to-date when the code changes!</p>
<p>Comments should be complete sentences. The first word should be capitalized, unless it is an identifier that begins with a lower case letter (never alter the case of identifiers!).</p>
<p>Block comments generally consist of one or more paragraphs built out of complete sentences, with each sentence ending in a period.</p>
<p>You should use two spaces after a sentence-ending period in multi-sentence comments, except after the final sentence.</p>
<p>When writing English, follow Strunk and White.</p>
<p>Python coders from non-English speaking countries: please write your comments in English, unless you are 120% sure that the code will never be read by people who don’t speak your language.</p>
<h2 id="block-comments">Block Comments</h2>
<p>Block comments generally apply to some (or all) code that follows them, and are indented to the same level as that code. Each line of a block comment starts with a <code>#</code> and a single space (unless it is indented text inside the comment).</p>
<p>Paragraphs inside a block comment are separated by a line containing a single <code>#</code>.</p>
<h2 id="inline-comments">Inline Comments</h2>
<p>Use inline comments sparingly.</p>
<p>An inline comment is a comment on the same line as a statement. Inline comments should be separated by at least two spaces from the statement. They should start with a # and a single space.</p>
<p>Inline comments are unnecessary and in fact distracting if they state the obvious.</p>
<p class="no"><span>Don’t do this:</span></p>
<pre><code class="language-python">x = x + 1 # Increment x</code></pre>
<p class="yes"><span>But sometimes, this is useful:</span></p>
<pre><code class="language-python">x = x + 1 # Compensate for border</code></pre>
<h2 id="documentation-strings">Documentation Strings</h2>
<p>Conventions for writing good documentation strings (a.k.a. “docstrings”) are immortalized in <a href="https://www.python.org/dev/peps/pep-0257/">PEP 257</a>.</p>
<ul>
<li>Write docstrings for all public modules, functions, classes, and methods. Docstrings are not necessary for non-public methods, but you should have a comment that describes what the method does. This comment should appear after the <code>def</code> line.</li>
<p></p>
<li><p><a href="https://www.python.org/dev/peps/pep-0257/">PEP 257</a> describes good docstring conventions. Note that most importantly, the <code>"""</code> that ends a multiline docstring should be on a line by itself:</p>
<pre><code class="language-python">"""Return a foobang
Optional plotz says to frobnicate the bizbaz first.
"""</code></pre></li>
<li>For one liner docstrings, please keep the closing <code>"""</code> on the same line.</li>
</ul>
<h1 id="naming-conventions">Naming Conventions</h1>
<p>The naming conventions of Python’s library are a bit of a mess, so we’ll never get this completely consistent – nevertheless, here are the currently recommended naming standards. New modules and packages (including third party frameworks) should be written to these standards, but where an existing library has a different style, internal consistency is preferred.</p>
<h2 id="overriding-principle">Overriding Principle</h2>
<p>Names that are visible to the user as public parts of the API should follow conventions that reflect usage rather than implementation.</p>
<h2 id="descriptive-naming-styles">Descriptive: Naming Styles</h2>
<p>There are a lot of different naming styles. It helps to be able to recognize what naming style is being used, independently from what they are used for.</p>
<p>The following naming styles are commonly distinguished:</p>
<ul class="allowed">
<li><code>b</code> (single lowercase letter)</li>
<li><code>B</code> (single uppercase letter)</li>
<li><code>lowercase</code></li>
<li><code>lower_case_with_underscores</code></li>
<li><code>UPPERCASE</code></li>
<li><code>UPPER_CASE_WITH_UNDERSCORES</code></li>
<li><code>CapitalizedWords</code> (or CapWords, CamelCase<a href="#fn5" class="footnoteRef" id="fnref5"><sup>5</sup></a>, StudlyCaps)</li>
<li><code>mixedCase</code> (differs from CapitalizedWords by initial lowercase character!)</li>
<li><code>Capitalized_Words_With_Underscores</code> (ugly!)</li>
</ul>
<div style="margin-left: -1.5em; padding-bottom: 1em;" class="row">
<div class="one column"><strong><small>Note:</small></strong></div>
<div class="eight columns"><p>When using acronyms in CapWords, capitalize all the letters of the acronyms. Thus <code>HTTPServerError</code> is better than <code>HttpServerError</code>.</p></div>
</div>
<p>There’s also the style of using a short unique prefix to group related names together. This is not used much in Python, but it is mentioned for completeness. For example, the <code>os.stat()</code> function returns a tuple whose items traditionally have names like <code>st_mode</code>, <code>st_size</code>, <code>st_mtime</code> and so on. (This is done to emphasize the correspondence with the fields of the POSIX system call struct, which helps programmers familiar with that.)</p>
<p>The X11 library uses a leading X for all its public functions. In Python, this style is generally deemed unnecessary because attribute and method names are prefixed with an object, and function names are prefixed with a module name.</p>
<p>In addition, the following special forms using leading or trailing underscores are recognized (these can generally be combined with any case convention):</p>
<ul>
<li><code>_single_leading_underscore</code>: weak “internal use” indicator. E.g. <code>from M import *</code> does not import objects whose name start with an underscore.</li>
<p></p>
<li><p><code>single_trailing_underscore_</code>: used by convention to avoid conflicts with Python keyword, e.g.:</p>
<pre><code class="language-python">Tkinter.Toplevel(master, class_='ClassName')</code></pre></li>
<li><code>__double_leading_underscore</code>: when naming a class attribute, invokes name mangling (inside class FooBar, <code>__boo</code> becomes <code>_FooBar__boo</code>; see below).</li>
<p></p>
<li><code>__double_leading_and_trailing_underscore__</code>: “magic” objects or attributes that live in user-controlled namespaces. E.g. <code>__init__</code>, <code>__import__</code> or <code>__file__</code>. Never invent such names; only use them as documented.</li>
</ul>
<h2 id="prescriptive-naming-conventions">Prescriptive: Naming Conventions</h2>
<h3 id="names-to-avoid">Names to Avoid</h3>
<p>Never use the characters ‘l’ (lowercase letter el), ‘O’ (uppercase letter oh), or ‘I’ (uppercase letter eye) as single character variable names.</p>
<p>In some fonts, these characters are indistinguishable from the numerals one and zero. When tempted to use ‘l’, use ‘L’ instead.</p>
<h3 id="ascii-compatibility">ASCII Compatibility</h3>
<p>Identifiers used in the standard library must be ASCII compatible as described in the <a href="https://www.python.org/dev/peps/pep-3131/#policy-specification">policy section</a> of <a href="https://www.python.org/dev/peps/pep-3131">PEP 3131</a>.</p>
<h3 id="package-and-module-names">Package and Module Names</h3>
<p>Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.</p>
<p>When an extension module written in C or C++ has an accompanying Python module that provides a higher level (e.g. more object oriented) interface, the C/C++ module has a leading underscore (e.g. <code>_socket</code>).</p>
<h3 id="class-names">Class Names</h3>
<p>Class names should normally use the CapWords convention.</p>
<p>The naming convention for functions may be used instead in cases where the interface is documented and used primarily as a callable.</p>
<p>Note that there is a separate convention for builtin names: most builtin names are single words (or two words run together), with the CapWords convention used only for exception names and builtin constants.</p>
<h3 id="type-variable-names">Type Variable Names</h3>
<p>Names of type variables introduced in PEP 484 should normally use CapWords
preferring short names: <code>T</code>, <code>AnyStr</code>, <code>Num</code>. It is recommended to add
suffixes <code>_co</code> or <code>_contra</code> to the variables used to declare covariant
or contravariant behavior correspondingly.</p>
<pre class='language-python'><code class='language-python'>from typing import TypeVar
VT_co = TypeVar('VT_co', covariant=True)
KT_contra = TypeVar('KT_contra', contravariant=True)</code></pre>
<h3 id="exception-names">Exception Names</h3>
<p>Because exceptions should be classes, the class naming convention applies here. However, you should use the suffix “Error” on your exception names (if the exception actually is an error).</p>
<h3 id="global-variable-names">Global Variable Names</h3>
<p>(Let’s hope that these variables are meant for use inside one module only.) The conventions are about the same as those for functions.</p>
<p>Modules that are designed for use via <code>from M import *</code> should use the <code>__all__</code> mechanism to prevent exporting globals, or use the older convention of prefixing such globals with an underscore (which you might want to do to indicate these globals are “module non-public”).</p>
<h3 id="function-and-variable-names">Function and Variable Names</h3>
<p>Function names should be lowercase, with words separated by underscores as necessary to improve readability.</p>
<p>Variable names follow the same convention as function names.</p>
<p>mixedCase is allowed only in contexts where that’s already the prevailing style (e.g. threading.py), to retain backwards compatibility.</p>
<h3 id="function-and-method-arguments">Function and Method Arguments</h3>
<p>Always use <code>self</code> for the first argument to instance methods.</p>
<p>Always use <code>cls</code> for the first argument to class methods.</p>
<p>If a function argument’s name clashes with a reserved keyword, it is generally better to append a single trailing underscore rather than use an abbreviation or spelling corruption. Thus <code>class_</code> is better than <code>clss</code>. (Perhaps better is to avoid such clashes by using a synonym.)</p>
<h3 id="method-names-and-instance-variables">Method Names and Instance Variables</h3>
<p>Use the function naming rules: lowercase with words separated by underscores as necessary to improve readability.</p>
<p>Use one leading underscore only for non-public methods and instance variables.</p>
<p>To avoid name clashes with subclasses, use two leading underscores to invoke Python’s name mangling rules.</p>
<p>Python mangles these names with the class name: if class Foo has an attribute named <code>__a</code>, it cannot be accessed by <code>Foo.__a</code>. (An insistent user could still gain access by calling <code>Foo._Foo__a</code>.) Generally, double leading underscores should be used only to avoid name conflicts with attributes in classes designed to be subclassed.</p>
<p><strong>Note:</strong> there is some controversy about the use of __names (see below).</p>
<h3 id="constants">Constants</h3>
<p>Constants are usually defined on a module level and written in all capital letters with underscores separating words. Examples include <code>MAX_OVERFLOW</code> and <code>TOTAL</code>.</p>
<h3 id="designing-for-inheritance">Designing for Inheritance</h3>
<p>Always decide whether a class’s methods and instance variables (collectively: “attributes”) should be public or non-public. If in doubt, choose non-public; it’s easier to make it public later than to make a public attribute non-public.</p>
<p>Public attributes are those that you expect unrelated clients of your class to use, with your commitment to avoid backwards incompatible changes. Non-public attributes are those that are not intended to be used by third parties; you make no guarantees that non-public attributes won’t change or even be removed.</p>
<p>We don’t use the term “private” here, since no attribute is really private in Python (without a generally unnecessary amount of work).</p>
<p>Another category of attributes are those that are part of the “subclass API” (often called “protected” in other languages). Some classes are designed to be inherited from, either to extend or modify aspects of the class’s behavior. When designing such a class, take care to make explicit decisions about which attributes are public, which are part of the subclass API, and which are truly only to be used by your base class.</p>
<p>With this in mind, here are the Pythonic guidelines:</p>
<ul>
<li>Public attributes should have no leading underscores.</li>
<p></p>
<li><p>If your public attribute name collides with a reserved keyword, append a single trailing underscore to your attribute name. This is preferable to an abbreviation or corrupted spelling. (However, notwithstanding this rule, ‘cls’ is the preferred spelling for any variable or argument which is known to be a class, especially the first argument to a class method.)</p>
<p><strong>Note 1</strong>: See the argument name recommendation above for class methods.</p></li>
<li><p>For simple public data attributes, it is best to expose just the attribute name, without complicated accessor/mutator methods. Keep in mind that Python provides an easy path to future enhancement, should you find that a simple data attribute needs to grow functional behavior. In that case, use properties to hide functional implementation behind simple data attribute access syntax.</p>
<p><strong>Note 1</strong>: Properties only work on new-style classes.</p>
<p><strong>Note 2</strong>: Try to keep the functional behavior side-effect free, although side-effects such as caching are generally fine.</p>
<p><strong>Note 3</strong>: Avoid using properties for computationally expensive operations; the attribute notation makes the caller believe that access is (relatively) cheap.</p></li>
<li><p>If your class is intended to be subclassed, and you have attributes that you do not want subclasses to use, consider naming them with double leading underscores and no trailing underscores. This invokes Python’s name mangling algorithm, where the name of the class is mangled into the attribute name. This helps avoid attribute name collisions should subclasses inadvertently contain attributes with the same name.</p>
<p><strong>Note 1</strong>: Note that only the simple class name is used in the mangled name, so if a subclass chooses both the same class name and attribute name, you can still get name collisions.</p>
<p><strong>Note 2</strong>: Name mangling can make certain uses, such as debugging and <code>__getattr__()</code>, less convenient. However the name mangling algorithm is well documented and easy to perform manually.</p>
<p><strong>Note 3</strong>: Not everyone likes name mangling. Try to balance the need to avoid accidental name clashes with potential use by advanced callers.</p></li>