這需求折騰了我半天..
沭陽網站制作公司哪家好,找創新互聯建站!從網頁設計、網站建設、微信開發、APP開發、成都響應式網站建設等網站項目制作,到程序開發,運營維護。創新互聯建站于2013年成立到現在10年的時間,我們擁有了豐富的建站經驗和運維經驗,來保證我們的工作的順利進行。專注于網站建設就選創新互聯建站。
import time
import datetime as datetime
def late_time(time2):
# 先獲得時間數組格式的日期
#time2是外部傳入的任意日期
now_time = datetime.datetime.strptime(time2, '%Y-%m-%d')
#如需求是當前時間則去掉函數參數改寫 ? ? ?為datetime.datetime.now()
threeDayAgo = (now_time - datetime.timedelta(days =30))
# 轉換為時間戳
timeStamp =int(time.mktime(threeDayAgo.timetuple()))
# 轉換為其他字符串格式
otherStyleTime = threeDayAgo.strftime("%Y-%m-%d")
return otherStyleTime
a = late_time("2019-3-30")
print(a)# 打印2018-02-28
切片或正則匹配。
切片:
year = 'YD210901-03'[2:4]
month = 'YD210901-03'[4:6]
正則匹配:
year, month = re.findall(r'YD(\d\d)(\d\d)\d\d-\d\d', 'YD210901-03')[0]
#?encoding:?utf-8
#?Python?3.6.0
def?getdays():
year=input("輸入年份:")
month=input("輸入月份:")
if?year==""?or?month==""or?year.isdigit()==False?or?month.isdigit()==False:
return?"輸入非法"
m=[31,28,31,30,31,30,31,31,30,31,30,31]
if?int(year)%4==0?and?int(year)%100!=0?or?int(year)%400==0:
m[1]=29
return?"{0}年{1}月有{2}天".format(year,?month,?m[int(month)-1])
print(getdays())
編寫一個函數day_of_month(year,month)
編寫程序輸入年(year)、月(month),調用該函數,返回該年份該月的天數,輸出返回的天數。
公歷閏年的計算方法為:
年份能被4整除且不能被100整除的為閏年
或者,年份能被400整除的是閏年。
ifmonth==2:
ifyear%4==0andyear%100!=0oryear%400==0:
print('閏年29天')
else:
print('平年28天')
elifmonthin(4,6,9,11):
發展歷史:
由于Python語言的簡潔性、易讀性以及可擴展性,在國外用Python做科學計算的研究機構日益增多,一些知名大學已經采用Python來教授程序設計課程。例如卡耐基梅隆大學的編程基礎、麻省理工學院的計算機科學及編程導論就使用Python語言講授。
當前文章:python讀取月份函數,輸出某個月的月歷 python
分享URL:http://m.newbst.com/article16/dssgodg.html
成都網站建設公司_創新互聯,為您提供網站導航、網頁設計公司、品牌網站設計、關鍵詞優化、網站收錄、企業網站制作
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯