diff options
| author | user-person <60802990+user-person@users.noreply.github.com> | 2020-03-29 13:15:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-29 13:15:54 -0400 |
| commit | 88edb9599f92eea6cc1bbeb181116f519c40220d (patch) | |
| tree | a3a63220b80210b80f6183fc634ac8dd9193f6f3 /challenge-053 | |
| parent | a024e68050aac33cc757089b005d8887c06bd3c6 (diff) | |
| download | perlweeklychallenge-club-88edb9599f92eea6cc1bbeb181116f519c40220d.tar.gz perlweeklychallenge-club-88edb9599f92eea6cc1bbeb181116f519c40220d.tar.bz2 perlweeklychallenge-club-88edb9599f92eea6cc1bbeb181116f519c40220d.zip | |
Update ch-2.py
Diffstat (limited to 'challenge-053')
| -rwxr-xr-x | challenge-053/user-person/python/ch-2.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/challenge-053/user-person/python/ch-2.py b/challenge-053/user-person/python/ch-2.py index 73544afc1b..ff5262ffbf 100755 --- a/challenge-053/user-person/python/ch-2.py +++ b/challenge-053/user-person/python/ch-2.py @@ -2,7 +2,6 @@ ########################################################################### # script name: ch-2.py # -# Thu Mar 26 00:42:17 2020 | 1585197737 # # # # https://github.com/user-person # # # @@ -56,16 +55,6 @@ for i in range(0,MAX): j = int(toStr(i,5)) j = '{number:0{size}d}'.format(number=j,size=num) -# if num == 1: -# j = '{num:01d}'.format(num=j) -# elif num == 2: -# j = '{num:02d}'.format(num=j) -# elif num == 3: -# j = '{num:03d}'.format(num=j) -# elif num == 4: -# j = '{num:04d}'.format(num=j) -# elif num == 5: -# j = '{num:05d}'.format(num=j) string = '' for k in str(j): |
