gpt4 book ai didi

python - 未定义名称 'WorksheetNotFound'

转载 作者:行者123 更新时间:2023-12-03 08:40:35 31 4
gpt4 key购买 nike

我正在尝试使用try/except来处理pygsheets库。我的代码如下:

def export_col_values(workbook, df, columns):
"""for a list of columns, creates a new sheet for each column and exports unique values and their counts to that sheet"""
for col in columns:
value_counts = df[col].value_counts()
counts_df = pd.DataFrame(value_counts).reset_index()
counts_df['index'] = counts_df['index'].astype(str)
try:
worksheet = workbook.worksheet_by_title(col)
except WorksheetNotFound:
workbook.add_worksheet(col)
worksheet = workbook.worksheet_by_title(col)
worksheet.set_dataframe(counts_df, start='A1')
print(f'{len(columns)} sets of column values exported.')

当工作表不存在时,我想创建一个新的工作表。但是,我得到错误'WorksheetNotFound'未定义。我知道我没有在代码中的任何地方定义术语WorksheetNotFound,但我的理解是'except'语句会捕获'WorksheetNotFound'类型的任何错误(这是我尝试访问的工作表时遇到的错误不存在)。 try/except是否不能解决所有错误?还是只有除外语句可以识别的某些类型的错误?谢谢!

最佳答案

实际上是pygsheets.WorksheetNotFound(doc)。所以尝试

except pygsheets.WorksheetNotFound:

关于python - 未定义名称 'WorksheetNotFound',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61895157/

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