9 lines
188 B
Python
9 lines
188 B
Python
from datetime import datetime
|
|
|
|
def main():
|
|
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
|
print(f"Hello from the AI Dev Team — {now}")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|