DMDaudio's picture
Duplicate from aliabid94/AutoGPT
d6fdb17
raw
history blame contribute delete
No virus
244 Bytes
from datetime import datetime
def get_datetime() -> str:
"""Return the current date and time
Returns:
str: The current date and time
"""
return "Current date and time: " + datetime.now().strftime("%Y-%m-%d %H:%M:%S")