From afce98214cf5e95bd988575f103eac4216e77119 Mon Sep 17 00:00:00 2001 From: Paulo Custodio Date: Sat, 31 Aug 2024 18:23:37 +0100 Subject: Add Python solution to challenge 048 --- challenge-048/paulo-custodio/python/ch-2.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 challenge-048/paulo-custodio/python/ch-2.py (limited to 'challenge-048/paulo-custodio/python/ch-2.py') 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) -- cgit