forked from MirrorHub/synapse
oops
This commit is contained in:
parent
32bc2b4fc1
commit
8ffbb52eee
1 changed files with 3 additions and 3 deletions
|
@ -22,17 +22,17 @@ Basically, PEP8
|
||||||
depending on the size and shape of the arguments and what makes more sense to
|
depending on the size and shape of the arguments and what makes more sense to
|
||||||
the author. In other words, both this::
|
the author. In other words, both this::
|
||||||
|
|
||||||
print("I am a fish %s", "moo")
|
print("I am a fish %s" % "moo")
|
||||||
|
|
||||||
and this::
|
and this::
|
||||||
|
|
||||||
print("I am a fish %s",
|
print("I am a fish %s" %
|
||||||
"moo")
|
"moo")
|
||||||
|
|
||||||
and this::
|
and this::
|
||||||
|
|
||||||
print(
|
print(
|
||||||
"I am a fish %s",
|
"I am a fish %s" %
|
||||||
"moo"
|
"moo"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue