python weekday()函数

def weekday(self):
        """Return the day of the week as an integer, where Monday is 0 and
        Sunday is 6.

        :rtype: int
        """
        return 0

 

原文地址:https://www.cnblogs.com/baxianhua/p/9928928.html