0

我在 Python 中遇到语法错误,错误:

SyntaxError: 'return' outside function

这似乎很不言自明,但据所知, return函数内部。

这是我的代码:

def getLinks(self, url, fandom, soup):
    links = []

    searchElementDict = {
    'aff':'select', 'fcwd':'select', 'ffn':'select', 'tthm':'select', 'lua':'select', 'ffa':'select', 
    'hpfd':'select', 'phns':'select', 'mbba':'div', 'avgf':'div', 'mugn':'select', 'hpffa':'select',
    'hpff':'select',
    }
    if fandom in searchElementDict:
        searchElement = searchElementDict[fandom]

    searchElementForDict = {
    'aff':'name', 'fcwd':'name', 'ffn':'title', 'tthm':'name', 'lua':'class', 'ffa':'class',
    'hpfd':'name', 'phns':'name', 'mbba':'id', 'avgf':'id', 'mugn':'name', 'hpffa':'name',
    'hppf':'name',
    }
    if fandom in searchElementForDict:
        searchElementFor = searchElementForDict[fandom]

    withValueDict = {
    'aff':'chapnav', 'fcwd':'goto', 'ffn':'Chapter Navigation', 'tthm':'chapnav', 'lua':'textbox',
    'ffa':'locationSelect', 'hpfd':'sid', 'phns':'chao', 'mbba':'mibba-layout-parts', 'avgf':'chapters',
    'mugn':'chapter', 'hpffa':'chapter', 'hpff':'chapterid',
    }
    if fandom in withValueDict:
        withValue = withValueDict[fandom]   
    try:    
        if fandom == 'mbba' or fandom == 'avgf':
            chapterGroup = soup.find(searchElement, attrs={searchElementFor : withValue})
            individualChapters = chapterGroup.findAll('a')
            for each in individualChapters:         
                chapterLink = each['href']
                links.append(chapterLink)       
        else:   
            chapterGroup = soup.find(searchElement, attrs={searchElementFor : withValue})
            individualChapters = chapterGroup.findAll('option', attrs={'value=':''})
            for each in individualChapters:         
                chapterLink = each.get('value')
                links.append(chapterLink)
            if fandom == 'fcwd':
                del links[0]
            elif fandom == 'hpfd' or fandom == 'hpff':
                del links[0]
                del links[0]
    except:
        links.append(1) 


    return links

我显然错过了一些东西,我只是不知道是什么

4

1 回答 1

8

我怀疑您正在混合制表符和空格..您def前面有 4 个空格,随后您使用多个制表符进行缩进。

PEP 8建议在制表符上使用 ( 4 )个空格

另请注意 PEP 8 中的以下内容:

Python 3 不允许混合使用制表符和空格进行缩进。

使用制表符和空格混合缩进的 Python 2 代码应转换为仅使用空格。

当使用 -t 选项调用 Python 2 命令行解释器时,它会发出有关非法混合制表符和空格的代码的警告。使用 -tt 时,这些警告会变成错误。强烈推荐这些选项!

于 2013-09-23T03:04:05.447 回答