python获取当天日期详解编程语言

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") #

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8358.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论