我必须编写numDays(otherdate)
函数,将天数作为此日期和OtherDate 之间的正整数返回。
此函数属于已初始化为给定公历日期的 Date ADT 类。我们有一个公历日期self._date(month,day,year)
格式。它必须返回两个日期之间的差异。比如 9 月 25 日和 10 月 6 日 = 它有 12 天的差异
def numDays(self,otherDate):
print("Enter a date:")
y=int(input("Year:"))
m=int(input("Month:"))
d=int(input("Day:"))
today=self._date(y,m,d)
diff=today-otherDate
NoOfDays=diff.days
print("The Number of day between today and Julian date is %s"%NoOfDays)
那样写,但我知道有一些错误。