码迷,mamicode.com
首页 > 其他好文 > 详细

datetime处理日期和时间

时间:2017-09-30 15:08:39      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:code   com   ber   log   创建   处理   color   style   class   

  • datetime.now() # 获取当前datetime
    datetime.utcnow()
    from datetime import datetime
    print(datetime.now() # 获取当前datetime、datetime.utcnow():)
    now=datetime.now()
    print(now)
    utcnow=datetime.utcnow()
    print(utcnow)
  • datetime(2017, 5, 23, 12, 20) # 用指定日期时间创建datetime
dt=datetime(2017, 5, 23, 12, 20)
print(dt)
  • 将以下字符串转换成datetime类型:

 

  1. ‘2017/9/30‘
  2. ‘2017年9月30日星期六‘
  3. ‘2017年9月30日星期六8时42分24秒‘
  4. ‘9/30/2017‘
  5. ‘9/30/2017 8:42:50 ‘

 

spt=datetime.strptime(2017/9/30,%Y/%m/%d)
print(spt)
n
=datetime.strptime(2017年9月30日星期六,%Y年%m月%d日星期六) print(n)
n
=datetime.strptime(2017年9月30日星期六8时42分24秒,%Y年%m月%d日星期六%H时42分24秒) print(n)
s
=datetime.strptime(9/30/2017,%m/%d/%Y) print(s)
dt
=datetime.now() s=datetime.strptime(9/30/2017 8:42:50 ,%m/%d/%Y %H:%M:%S ) print(n)

将以下datetime类型转换成字符串:

 

  1. 2017年9月28日星期4,10时3分43秒
  2. Saturday, September 30, 2017
  3. 9/30/2017 9:22:17 AM

September 30, 2017

                                                                        
da=datetime.now()
n=da.strftime(%Y年%m月%d日星期%w %H时%M分%S秒)
print(n)

n=da.strftime(%A, %B %d,%Y)
print(n)
                                  
n=da.strftime(%m/%d/%Y %H:%M:%S %p)
print(n)

n=da.strftime(%B %d,%Y)
print(n)

用datetime类型的变量输出以下字符串:

 

  1. 今天是2017年9月30日
  2. 今天是这周的第?天 
  3. 今天是今年的第?天 
  4. 今周是今年的第?周 
  5. 今天是当月的第?天
    n=da.strftime(今天是%Y年%m月%d日)
    print(n)
    
    n=da.strftime(今天是这周的第%w天)
    print(n)
    
    n=da.strftime(今天是今年的第%j天)
    print(n)
    
    n=da.strftime(今周是今年的第%W周)
    print(n)
    
    n=da.strftime(今天当月的第%d天)
    print(n)

    运行结果:技术分享

     

datetime处理日期和时间

标签:code   com   ber   log   创建   处理   color   style   class   

原文地址:http://www.cnblogs.com/zhuyinyinyin/p/7613731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!