feat: add date_test.py

This commit is contained in:
2025-09-06 23:27:58 +08:00
parent 8cd3fde5ae
commit 7a0d02783d

6
date_test.py Normal file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env python3
import datetime
if __name__ == "__main__":
print(datetime.datetime.now())
print(datetime.datetime.now().strftime("%Y-%m-%dT%H:%M:%S.%f %p %A %z%Z"))