This commit is contained in:
27942
2025-10-11 14:39:33 +08:00
parent 1b61f9ecb1
commit 9a488957e1
5 changed files with 1874 additions and 46 deletions

6
test.py Normal file
View File

@@ -0,0 +1,6 @@
import datetime
time_ser = datetime.datetime(2025, 9, 1) # 修正为2024年9月
start_of_day = time_ser.replace(hour=0, minute=0, second=0, microsecond=0)
print(start_of_day.timestamp())