mirror of
https://github.com/hjdhnx/dr_py.git
synced 2024-11-21 08:28:24 -06:00
16 lines
620 B
Python
16 lines
620 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# File : test_time.py
|
|
# Author: DaShenHan&道长-----先苦后甜,任凭晚风拂柳颜------
|
|
# Date : 2022/12/29
|
|
|
|
import datetime
|
|
from datetime import timedelta
|
|
|
|
if __name__ == '__main__':
|
|
# a = datetime.datetime.now().now().replace(hour=0, minute=1)).strftime('%Y-%m-%d %H:%M:%S')
|
|
# print(a)
|
|
print(datetime)
|
|
print(datetime.datetime.now())
|
|
print(datetime.datetime.now().replace(hour=0, minute=1).strftime('%Y-%m-%d %H:%M:%S'))
|
|
print((datetime.datetime.now().replace(hour=0, minute=0, second=0)+ timedelta(days=1)).strftime('%Y-%m-%d %H:%M:%S')) |