mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
10 lines
279 B
Python
Executable file
10 lines
279 B
Python
Executable file
#!/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)
|