10 lines
128 B
Python
10 lines
128 B
Python
from datetime import datetime
|
|
|
|
heute = datetime.now()
|
|
|
|
print(type(heute))
|
|
print(heute)
|
|
print(heute.time())
|
|
print(heute.date())
|
|
|