所以我正在开发一个小程序,通过GUI从给定文件中删除重复项,以学习如何使用Python制作GUI。
我编写了一个方法,该方法应该使用string
,将其转换为list
,从list
删除重复内容并实际执行此操作。
当我想return
结果时会出现此问题,因为如果我print()
返回的值,则只会导致None
被打印。但是如果我print()
在方法中想要return
的值,它会打印出正确的列表。
该课程如下:
#Class that removes the duplicates
class list_cleaner():
def __init__(self):
self.result_list = []
def clean(self,input_string, seperator, target):
#takes a string and a seperator, and splits the string at the seperator.
working_list = self.make_list_from_string(input_string,seperator)
#identify duplicates, put them in the duplicate_list and remove them from working_list
duplicate_list = []
for entry in working_list:
instances = 0
for x in working_list:
if entry == x:
instances = instances + 1
if instances > 1:
#save the found duplicate
duplicate_list.append(entry)
#remove the duplicate from working list
working_list = list(filter((entry).__ne__, working_list))
self.result_list = working_list + duplicate_list
print(self.result_list) #Prints the result list
return self.result_list
主要功能如下(注意:duplicate_remover是list_cleaner的外观):
if __name__ == "__main__":
remover = duplicate_remover()
x = remover.remove_duplicates("ABC,ABC,ABC,DBA;DBA;DBA,ahahahaha", ",")
print(x) #Prints none.
我有一个方法f
,它返回list
l
,这是类C
的一个属性。
如果我print()
l
作为f
的一部分,则会打印l
的值。
如果我返回l
并将其存储在f
范围之外的变量中,然后将print()
此变量存储为None
。
提前致谢!
请求了duplicate_remover
代码。
它看起来像这样:
class duplicate_remover():
def remove_duplicates(self,input_string,seperator):
my_list_cleaner = list_cleaner()
my_list_cleaner.clean( input_string = input_string, seperator = seperator)
答案 0 :(得分:3)
remove_duplicates
忘记返回my_list_cleaner.clean(...)
的返回值,这会导致返回默认值None
。