带有示例的Python datetime weekday()方法

Python datetime.weekday()方法 (Python datetime.weekday() Method)

datetime.weekday() method is used to manipulate objects of datetime class of module datetime.

datetime.weekday()方法用于操作模块datetime的datetime类的对象。

It uses a datetime class object and returns the day of the week as an integer, where Monday is 0 and Sunday is 6. It is an instance method, i.e., it works on an instance of the class.

它使用datetime类对象,并以整数形式返回星期几,其中Monday是0,Sunday是6。它是一个实例方法,即,它适用于该类的实例。

Module:

模块:

    import datetime

Class:

类:

    from datetime import datetime

Syntax:

句法:

    weekday()

Parameter(s):

参数:

  • None

    没有

Return value:

返回值:

The return type of this method is a number which tells us what is the day of the week on that day.

此方法的返回类型是一个数字,该数字告诉我们当天的星期几。

Example:

例:

## importing datetime class
from datetime import datetime

## Creating an instance
x = datetime.today()
d = x.weekday()
print("Today's weekday number is:", d)

x = datetime(1996, 10,27, 21, 5, 5)
d1 = x.weekday()
xd = x.date()
print("Weekday number on the date", xd,"will be:",d1)
print()

## Since we know the number, 
## we can save them in a list and 
## print the day on that number
day =["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]
print("Today's day is:",day[d])
print("Day on date", x," was:", day[d1])

Output

输出量

Today's weekday number is: 5
Weekday number on the date 1996-10-27 will be: 6

Today's day is: Saturday
Day on date 1996-10-27 21:05:05  was: Sunday


翻译自: https://www.includehelp.com/python/datetime-weekday-method-with-example.aspx

  • 4
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值