我出现了一些错误。我无法解决它。基本上我在任何地方和'和'分开我的输入'或'发生并删除在同一子列表中具有x而不是x的序列。我的代码看起来像这样
import string
class list(object):
def __init__(self, input):
self.input = input
def update_list(self):
new_list = [i.split("and") for i in input.split("or")]
print new_list
def reduced(self):
re_list = [m for m in new_list if not any("not" + m in new_list)]
print re_list
def main():
my_input = raw_input(" ")
print my_input
my_list = list(my_input)
my_list.update_list()
my_list.reduced()
if __name__ == '__main__':
main()
我得到的错误:
Traceback (most recent call last):
line 39, in <module>
main()
line 32, in main
my_list.update_list()
line 18, in update_list
new_list = [i.split("and") for i in input.split("or")]
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
我的输入如下:
apple and berry or not apple and apple or banana and not papaya
期望的输出:
[['apple', 'berry'],['banana', 'not papaya']]
我也使用Python 2.x系列
我在update_list()中使用self.input替换输入时纠正了上述内容 但我得到了新的错误说明
re_list = [m for m in new_list if not any("not" + m in new_list)]
NameError: global name 'new_list' is not defined
答案 0 :(得分:1)
单词input
是Python中的标准函数,您应该避免使用它。但是,在这种情况下,在update_list
方法中,您的意思并不是input
,而是self.input
。由于您未指定self.
,因此它在标准python中找到input
函数并假设您的意思。因此你的错误是
'builtin_function_or_method'对象没有属性'split'
因为内置函数input
没有属性split
。
EDIT ----
好吧,我会给你更多,因为你似乎还在苦苦挣扎。如果您希望对象在调用中保留值,则需要使用“self”。更新对象的属性。我对reduced
要做什么感到有点模糊,所以我可能有错。
注意:对于我自己的测试理智,我对输入进行了硬编码,但您可以将raw_input()
语句放回去。
另外,请远离可能破坏Python内置插件的名称,例如“list”和“input”。
class MyList(object):
''' Also, classes are usually Capitalized. '''
def __init__(self, data):
self.raw_data = data
def update_list(self):
''' I added an additional loop in order to strip away spaces. '''
self.parsed_data = [[ j.strip() for j in i.split("and") ] for i in self.raw_data.split("or") ]
return self.parsed_data
def reduce_list(self):
self.reduced_data = [m for m in self.parsed_data if m[0] != "not "+m[1] and m[1] != "not "+ m[0]]
return self.reduced_data
def test_my_list():
input_data = """apple and berry or not apple and apple or banana and not papaya"""
print(input_data)
my_list = MyList(input_data)
print(my_list.update_list())
print(my_list.reduce_list())
>>> test_my_list()
apple and berry or not apple and apple or banana and not papaya
[['apple', 'berry'], ['not apple', 'apple'], ['banana', 'not papaya']]
[['apple', 'berry'], ['banana', 'not papaya']]