We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91d2a3f commit 70543acCopy full SHA for 70543ac
1 file changed
Doc/tutorial/controlflow.rst
@@ -458,10 +458,12 @@ function like this::
458
def cheeseshop(kind, *arguments, **keywords):
459
print("-- Do you have any", kind, "?")
460
print("-- I'm sorry, we're all out of", kind)
461
- for arg in arguments: print(arg)
+ for arg in arguments:
462
+ print(arg)
463
print("-" * 40)
464
keys = sorted(keywords.keys())
- for kw in keys: print(kw, ":", keywords[kw])
465
+ for kw in keys:
466
+ print(kw, ":", keywords[kw])
467
468
It could be called like this::
469
0 commit comments