pull/24/head
Matthew Hodgson 2014-12-10 13:43:34 +00:00
parent 32bc2b4fc1
commit 8ffbb52eee
1 changed files with 3 additions and 3 deletions

View File

@ -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"
) )