I have the following code to do this, but how can I do it better? Right now I think it\'s better than nested loops, but it starts to get Perl-one-linerish when you have a ge
for i in range(16): print datetime.date.today() + datetime.timedelta(days=i)