-2
class Sample:

    def __init__(self):
        self.lst_report_footer_strings = ['Manager', 'Accountant', 'Created By', 
                                         'fifth', '', '']
        int_size_of_string = 0
        lst_temp_report_footer = self.lst_report_footer_strings
        for lst_report_footer_item in self.lst_report_footer_strings:
            print lst_temp_report_footer
            print lst_report_footer_item
            if lst_report_footer_item in ('', ' '):
                print "Inside if : Item ==" + lst_report_footer_item
                lst_temp_report_footer.remove(lst_report_footer_item)   
                print "list after remove == " + str(lst_temp_report_footer)
            else:
                print "Inside else : length = ", str(len(lst_report_footer_item))
                int_size_of_string += len(lst_report_footer_item)


if __name__ == '__main__':
    ins_class = Sample()

Output

['Manager', 'Accountant', 'Created By', 'fifth', '', '']
Manager
Inside else : length =  7
['Manager', 'Accountant', 'Created By', 'fifth', '', '']
Accountant
Inside else : length =  10
['Manager', 'Accountant', 'Created By', 'fifth', '', '']
Created By
Inside else : length =  10
['Manager', 'Accountant', 'Created By', 'fifth', '', '']
fifth
Inside else : length =  5
['Manager', 'Accountant', 'Created By', 'fifth', '', '']

Inside if : Item ==
list after remove == ['Manager', 'Accountant', 'Created By', 'fifth', '']

What i need is....

list after remove == ['Manager', 'Accountant', 'Created By', 'fifth']
4

3 回答 3

1

我已经把它变成了一段更简单的代码,并试图找出你真正想要做的事情。有很多不必要的代码,你为什么要使用一个类来说明你的问题?

>>> x=['Manager', 'Accountant', 'Created By', 'fifth', '', '']
>>> result = [i for i in x if i.strip()]
>>> result
['Manager', 'Accountant', 'Created By', 'fifth']
>>>
于 2012-08-01T10:54:28.820 回答
1

这等效于您的类,没有调试打印,并且具有缩短的变量名称。

class Sample:
   def __init__(self):
       self.footers = ['Manager', 'Accountant', 'Created By', 'fifth', '', '']
       self.footers = [x for x in self.footers if x.strip() != ""]
       self.int_size_of_string = sum(len(x) for x in self.footers)

if __name__ == '__main__':
    myclass = Sample()
    print myclass.footers
    print myclass.int_size_of_string

我还创建了int_size_of_string一个属性,否则一旦__init__完成就无法访问它(你不能从 中返回值__init__)。该strip方法从字符串的两端删除任意数量的空格和其他空白字符。

您的代码不起作用的原因是您在迭代列表时正在修改列表。您删除了倒数第二个项目,所以最后一个项目取而代之,然后当它移到下一个项目时,就没有更多的项目了。

于 2012-08-01T10:54:16.953 回答
0

好的,它不起作用的原因是因为您的循环遍历了列表中的每个项目。当它找到一个空间时,它会删除该项目。并显示您当前的列表。所以第一次,它会告诉你空间,因为它们有 2 个。

但是,现在你的循环失败了,因为你在循环中修改了列表,所以没有更多的项目可以迭代,因为你在 6 中的第 5 项,然后你删除了第 5 项,现在是列表仅包含 5 个项目,但循环寻找项目 6。因为没有,它退出。让列表保持原样。

本质上,您应该做的是:

class Sample:
   def __init__(self):
       self.lst_report_footer_strings = \
['Manager', 'Accountant', 'Created By', 'fifth', '', '']
       int_size_of_string = 0
       lst_temp_report_footer = self.lst_report_footer_strings
       temp_remove_list = []
       for lst_report_footer_item in xrange(len(self.lst_report_footer_strings)):
           print lst_temp_report_footer
           print self.lst_report_footer_strings[lst_report_footer_item]
           if lst_temp_report_footer[lst_report_footer_item] in ['',' ']:
               print "Inside if : Item =="+self.lst_report_footer_strings[lst_report_footer_item]
               temp_remove_list.append(lst_report_footer_item)   
           else:
               print "Inside else : length = ",str(len(lst_temp_report_footer[lst_report_footer_item]))
               int_size_of_string += len(lst_temp_report_footer[lst_report_footer_item])

       for item in reversed(temp_remove_list):
           del lst_temp_report_footer[item]

       print "final list : == ",lst_temp_report_footer

if __name__ == '__main__':
    ins_class = Sample()

注意 - 这个文件中的选项卡有些奇怪,我希望它能为你解决。

于 2012-08-01T11:01:07.597 回答