from datetime import datetime def now(): """Returns a string for the current day and time the format YYYY-MM-DD HH:MM:SS is like the internet format""" now = datetime.now() return now.strftime("%Y-%m-%d %H:%M:%S") # like the internet standard