6 lines
84 B
Python
6 lines
84 B
Python
|
def date():
|
||
|
import datetime
|
||
|
|
||
|
today = datetime.date.today()
|
||
|
print(today)
|