mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
10 lines
287 B
Python
Executable file
10 lines
287 B
Python
Executable file
#!/usr/bin/env python
|
|
import datetime
|
|
|
|
tmp_day = datetime.date.today() # von
|
|
lastday = datetime.date(2014, 2, 10) # bis (Vorlesungsende?)
|
|
|
|
while tmp_day < lastday:
|
|
if tmp_day.weekday() == 0:
|
|
print tmp_day.strftime('%d.%m.%Y')
|
|
tmp_day += datetime.timedelta(days=1)
|