Python属性错误if语句

时间:2016-07-24 01:15:57

标签: python attributes attributeerror

我一直在研究这段代码大约一天。在这一部分几个小时,它一直说我在第26行有一个属性错误。不幸的是,这就是我所拥有的所有信息。我已经尝试了无数不同的方法来解决它,并搜索了许多网站/论坛。我感谢任何帮助。这是代码:

import itertools
def answer(x, y, z):
    monthdays = {31,
                 28,
                 31, 
                 30, 
                 31, 
                 30, 
                 31, 
                 31, 
                 30, 
                 31, 
                 30, 
                 31}
    real_outcomes = set()
    MONTH = 0
    DAY = 1
    YEAR = 2

    #perms = [[x, y, z],[x, z, y],[y, z, x],[y, x, z],[z, x, y],[z, y, x]]
    possibilities = itertools.permutations([x, y, z])
    for perm in possibilities:
        month_test = perm[MONTH]
        day_test = perm[DAY]
        #I keep receiving an attribute error on the line below
*       if month_test <= 12 and day_test <= monthdays.get(month_test):
            real_outcomes.add(perm)

    if len(realOutcomes) > 1:
        return "Ambiguous"
    else:
        return "%02d/%02d/%02d" % realOutcomes.pop()

2 个答案:

答案 0 :(得分:0)

问题是monthdays没有get()方法,这是因为monthdaysset,而不是dict,因为你可能期望的。

查看代码,似乎列表或元组适合monthdays。集合没有用,因为它没有排序,不能包含重复项:

monthdays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]

然后:

if month_test < len(monthdays) and day_test <= monthdays[month_test]:

您的代码表明您最终会想要处理多年。在这种情况下,您应该查看calendar模块。它提供了函数monthrange(),它给出了给定年份和月份的天数,并处理闰年。

from calendar import monthrange

try: 
    if 1 <= perm[DAY] <= monthrange(perms[YEAR], perm[MONTH])[1]:
        real_outcomes.add(perm)
except ValueError as exc:
    print(exc)    # or pass if don't care

答案 1 :(得分:-2)

设置对象(&#39;工作日&#39;在您的情况下)没有属性&#39; get&#39;

你应该迭代它或将其转换为列表,例如:

list(monthdays)[0]将返回结果列表的第一项