-2

我有“通常”的预期缩进块。所有的缩进都是对的。我已经在各种编辑器中打开了我的脚本,并且没有任何问题 abt misalignments 或由制表符引起的隐藏空格。

如果有人能对这个问题有所了解,我将不胜感激。

这是导致问题的脚本部分:

def findCSVs():
'''
looks into a 'tocom_data' subdirectory, finds 'tocomxxx.csv' files,
retuns a sorted list of filenames that conform: begins with TOCOM, ends in .csv
'''
    csvlist = []
    datadir=os.path.join('.','tocom_data')
    flist = os.listdir(datadir)
    for fname in flist:
        fsplit = fname.split('.')
        if len(fsplit)>1:
            if fsplit[1]=="csv" and fname[0:5]=="TOCOM":
                completeFname= os.path.join(datadir,fname)
                csvlist.append(completeFname)
                csvlist.sort()
    return csvlist

Python 期望在该行有一个缩进块if len(fsplit)>1:

非常感激

何塞

4

2 回答 2

7

问题在于函数开头的文档字符串。它也应该缩进。

于 2012-11-22T13:33:51.897 回答
0

缩进文档字符串的第一行。

只是改变:

def findCSVs():
'''
looks into a 'tocom_data' subdirectory, finds 'tocomxxx.csv' files,
retuns a sorted list of filenames that conform: begins with TOCOM, ends in .csv
'''

至:

def findCSVs():
    '''
looks into a 'tocom_data' subdirectory, finds 'tocomxxx.csv' files,
retuns a sorted list of filenames that conform: begins with TOCOM, ends in .csv
'''

它应该可以正常工作。

于 2012-11-22T13:36:26.780 回答