6 lines
177 B
Python
6 lines
177 B
Python
#!/usr/bin/env python3
|
|
from datetime import datetime
|
|
|
|
def today() -> str:
|
|
now = datetime.now()
|
|
return now.strftime('%A') + ' ' + str(now.day) + ' ' + now.strftime('%B')
|