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