Commit dbdeebbb authored by Guido van Rossum's avatar Guido van Rossum

improved lay-out; added call to main()

parent f2759a5c
...@@ -141,3 +141,5 @@ def triple(a, b, c): ...@@ -141,3 +141,5 @@ def triple(a, b, c):
def zfill(n): def zfill(n):
s = `n` s = `n`
return '0' * (2 - len(s)) + s return '0' * (2 - len(s)) + s
main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment