InternBootcamp/internbootcamp/bootcamp_utils/formatted_time.py
2025-05-23 15:27:15 +08:00

5 lines
No EOL
130 B
Python
Executable file

import time
def formatted_time():
formatted_time = time.strftime("%Y%m%d_%H%M%S", time.localtime())
return formatted_time