We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32bc2b4 commit 8ffbb52Copy full SHA for 8ffbb52
1 file changed
docs/code_style.rst
@@ -22,17 +22,17 @@ Basically, PEP8
22
depending on the size and shape of the arguments and what makes more sense to
23
the author. In other words, both this::
24
25
- print("I am a fish %s", "moo")
+ print("I am a fish %s" % "moo")
26
27
and this::
28
29
- print("I am a fish %s",
+ print("I am a fish %s" %
30
"moo")
31
32
33
34
print(
35
- "I am a fish %s",
+ "I am a fish %s" %
36
"moo"
37
)
38
0 commit comments