ChatGPT custom prompts

This commit is contained in:
Elias Bachaalany
2024-03-08 10:31:50 -08:00
parent f70541dcbe
commit d3fa35bbc9
1424 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import datetime
def update_time():
current_time = datetime.datetime.now().isoformat()
with open('time_tracker.txt', 'w') as file:
file.write(current_time)
if __name__ == "__main__":
update_time()