判斷當前時間是週幾,及本年的第幾周

2022-03-22 04:17:46 字數 1152 閱讀 3443

import

datetime

import

calendar

#獲取當天日期值

currentdate =datetime.date.today()

print

(currentdate)

year=currentdate.year

month =currentdate.month

day =currentdate.day

print

(year,month,day)

print

(calendar.weekday(year,month,day))

currentday =calendar.weekday(year,month,day)

#系統預設:星期一作為一周的第一天(即:0),星期日作為一周的最後一天(即:6)

print

(currentday)

#判斷當天是週幾?

if currentday ==0:

print("

當天為周一")

elif currentday ==1:

print("

當天為周二")

elif currentday ==2:

print("

當天為週三")

elif currentday ==3:

print("

當天為周四")

elif currentday == 4:

print("

當天為周五")

elif currentday == 5:

print("

當天為週六")

else

:

print("

當天為周七")

#判斷當天是否為週末

if currentday > 5:

print("

當天為週末")

else

:

print("

工作日"

)import

time

print

(time.localtime())

#列印當前時間是本年的第幾周

print(time.strftime("

%w"))

Java獲取當前時間是週幾

1 使用calendar類 獲取當前日期是星期幾 param dt return 當前日期是星期幾 public static string getweekofdate date dt calendar cal calendar.getinstance cal.settime dt int w ca...

php判斷今日是本月的第幾個星期幾

php判斷今日是本月的第幾個星期幾 php中有乙個非常強悍的系統函式date 函式。巧妙的利用他可以實現顯示任意我們需要的時間。比如今天遇到個需要是要判斷今天是本月的第幾個星期幾,這裡就不討論這種說話有沒有問題以及是否有意義,下面具體看如何使用php去實現這個功能吧。這個功能主要還是用到了date ...

C 根據日期判斷是一年的第幾天 星期幾

w y 1 y 1 4 y 1 100 y 1 400 d y是年份數,d是這一天在這一年中的累積天數,也就是這一天在這一年中是第幾天。最好用的是蔡勒公式 w c 4 2c y y 4 13 m 1 5 d 1 c是世紀數減一,y是年份後兩位,m是月份,d是日數。1月和2月要按上一年的13月和 14...