Python 2.7, How can I get/check the size of a list?
本问题已经有最佳答案,请猛点这里访问。
我有一个数组(列表),我想检查它的大小是否等于1,如果等于1,那么它需要附加一个新的,如图所示。
1 2 3 | ## If appended data = 1 then append the new line: if appended_data == 1: appeneded_data.append("") ## Add a new line if appended data has a size of 1 |
应该是一件相当简单的事情,但我无法解决:s
有什么想法吗?
在其上使用
1 | if len(appended_data) == 1: |
简短演示:
1 2 3 4 5 6 | >>> len([]) 0 >>> len([1]) 1 >>> len([1, 2]) 2 |