gpt4 book ai didi

Python:在异常时返回空值

转载 作者:太空宇宙 更新时间:2023-11-03 13:14:41 25 4
gpt4 key购买 nike

我有一些 Python 经验,但由于缺乏正规培训,我从未使用过 try & except 函数来捕获错误。

我正在努力从维基百科中提取一些文章。为此,我有一系列标题,其中一些标题最后没有任何文章或搜索结果。我希望页面检索功能只是跳过这几个名字并继续运行其余的脚本。可重现的代码如下。

import wikipedia
# This one works.
links = ["CPython"]
test = [wikipedia.page(link, auto_suggest=False) for link in links]
test = [testitem.content for testitem in test]
print(test)

#The sequence breaks down if there is no wikipedia page.
links = ["CPython","no page"]
test = [wikipedia.page(link, auto_suggest=False) for link in links]
test = [testitem.content for testitem in test]
print(test)

运行它的库使用了这样的方法。通常这将是非常糟糕的做法,但由于这只是一次性数据提取,我愿意更改库的本地副本以使其正常工作。 编辑我现在包含了完整的功能。

def page(title=None, pageid=None, auto_suggest=True, redirect=True, preload=False):
'''
Get a WikipediaPage object for the page with title `title` or the pageid
`pageid` (mutually exclusive).

Keyword arguments:

* title - the title of the page to load
* pageid - the numeric pageid of the page to load
* auto_suggest - let Wikipedia find a valid page title for the query
* redirect - allow redirection without raising RedirectError
* preload - load content, summary, images, references, and links during initialization
'''
if title is not None:
if auto_suggest:
results, suggestion = search(title, results=1, suggestion=True)
try:
title = suggestion or results[0]
except IndexError:
# if there is no suggestion or search results, the page doesn't exist
raise PageError(title)
return WikipediaPage(title, redirect=redirect, preload=preload)
elif pageid is not None:
return WikipediaPage(pageid=pageid, preload=preload)
else:
raise ValueError("Either a title or a pageid must be specified")

我应该怎么做才能只检索没有给出错误的页面。也许有一种方法可以过滤掉列表中出现此错误或某种错误的所有项目。对于不存在的页面,返回“NA”或类似的内容是可以的。在没有通知的情况下跳过它们也可以。谢谢!

最佳答案

如果页面不存在,函数 wikipedia.page 将引发一个 wikipedia.exceptions.PageError。这就是您要捕获的错误。

import wikipedia
links = ["CPython","no page"]
test=[]
for link in links:
try:
#try to load the wikipedia page
page=wikipedia.page(link, auto_suggest=False)
test.append(page)
except wikipedia.exceptions.PageError:
#if a "PageError" was raised, ignore it and continue to next link
continue

你必须用 try block 包围函数 wikipedia.page,所以恐怕你不能使用列表理解。

关于Python:在异常时返回空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33897358/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com