python获取当天日期

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
import datetime
  
# Get a date object
today = datetime.date.today()
  
# General functions
print "Year: %d" % today.year
print "Month: %d" % today.month
print "Day: %d" % today.day
print "Weekday: %d" % today.weekday() # Day of week Monday = 0, Sunday = 6
  
# ISO Functions
print "ISO Weekday: %d" % today.isoweekday() # Day of week Monday = 1, Sunday = 7
print "ISO Format: %s" % today.isoformat() # YYYY-MM-DD format
print "ISO Calendar: %s" % str(today.isocalendar()) # Tuple of (ISO year, ISO week number, ISO weekday)
  
# Formatted date
print today.strftime("%Y/%m/%d") #

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:在Oracle数据库中查询所有触发器、存储过程、视图、表

下一篇:python arp欺骗伪造网关代码