diff options
| author | Lubos Kolouch <lubos@kolouch.net> | 2024-09-16 09:41:35 +0200 |
|---|---|---|
| committer | Lubos Kolouch <lubos@kolouch.net> | 2024-09-16 09:41:35 +0200 |
| commit | 65b9d6b25e0a823ca7ab6d15744ff98eb3697471 (patch) | |
| tree | fcbcdebd50e3e146dfecf519701ec04b191053eb /challenge-048/paulo-custodio/python/ch-2.py | |
| parent | bd1fe7ae50ca42bda58c134b9edfdc287fb3f386 (diff) | |
| parent | 68e321dd32a834f54b55d5e8924f04358e41cf1f (diff) | |
| download | perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.tar.gz perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.tar.bz2 perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.zip | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'challenge-048/paulo-custodio/python/ch-2.py')
| -rw-r--r-- | challenge-048/paulo-custodio/python/ch-2.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/challenge-048/paulo-custodio/python/ch-2.py b/challenge-048/paulo-custodio/python/ch-2.py new file mode 100644 index 0000000000..b0dc6ce96d --- /dev/null +++ b/challenge-048/paulo-custodio/python/ch-2.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 + +# Challenge 048 +# +# TASK #2 +# Palindrome Dates +# Write a script to print all Palindrome Dates between 2000 and 2999. The format +# of date is mmddyyyy. For example, the first one was on October 2, 2001 as it is +# represented as 10022001. + +from datetime import datetime, timedelta + +dt = datetime(2000,1,1) +while dt < datetime(3000,1,1): + str = dt.strftime("%m%d%Y") + if str[::-1] == str: + print(str) + dt += timedelta(days=1) |
