python获取系统时间函数_python3 datetime和time获取当前日期和时间

最经使用到了一些时间相关的包和函数,以后使用到更多,再补充

import datetime

import time

# 获取当前时间, 其中中包含了year, month, hour, 需要import datetime

today = datetime.date.today()

print(today)

print(today.year)

print(today.month)

print(today.day)

'''

>>>2017-01-01

>>>2017

>>>1

>>>1

'''

# 获得明天, 其他依次类推

tomorrow = today + datetime.timedelta(days=1)

print(tomorrow)

'''

>>>2017-01-02

'''

# 时间相减,相加同理

now = datetime.timedelta(days=0, hours=0, minutes=3, seconds=50);

pre = datetime.timedelta(days=0, hours=0, minutes=1, seconds=10);

duration_sec = (now - pre).seconds

duration_day = (now - pre).days

print(type(duration_sec))

print(type(now - pre))

print(duration_sec)

print(duration_day)

'''

>>>

>>>

>>>160

>>>0

'''

# 使用time.strftime(format, p_tuple)获取当前时间,需要import time

now = time.strftime("%H:%M:%S")

print(now)

'''

>>>23:49:34

'''

# 使用datetime.now()

now = datetime.datetime.now()

print(now)

print(now.year)

print(now.month)

print(now.day)

print(now.hour)

print(now.minute)

print(now.second)

print(now.microsecond)

'''

>>>2017-01-01 23:49:34.789292

>>>2017

>>>1

>>>1

>>>23

>>>49

>>>34

>>>789292

'''

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值