Printing list of dates starting today

2008-09-01 Thread Luka Djigas
Hello everyone, please, I need your help. I'm new to python, so I don't know if this will seem like a stupid question to some of you ... I have a need to write to a file (or just print on screen, that part doesn't matter at this point) a list of dates, starting today. For example: 02.09.2008. tue

Re: Printing list of dates starting today

2008-09-01 Thread Fredrik Lundh
Luka Djigas wrote: please, I need your help. I'm new to python, so I don't know if this will seem like a stupid question to some of you ... I have a need to write to a file (or just print on screen, that part doesn't matter at this point) a list of dates, starting today. For example:

Re: Printing list of dates starting today

2008-09-01 Thread Ari Makela
On 2008-09-01, Luka Djigas [EMAIL PROTECTED] wrote: please, I need your help. I'm new to python, so I don't know if this will seem like a stupid question to some of you ... There are several ways to do it. Have a look at the documentation of modules time and datetime. For this exact problem