mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
improved lay-out; added call to main()
This commit is contained in:
parent
f2759a5c2d
commit
dbdeebbbfa
1 changed files with 4 additions and 2 deletions
|
@ -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()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue