DateTime importieren
from datetime import datetime
date = datetime.now()
print(date)
# Prints in the format year, month, day, hour, minute, second, and microsecond
Locstock