在Jupyter中调用定义的函数时出现名称错误

问题描述 投票:2回答:2

我正在关注https://blog.patricktriest.com/analyzing-cryptocurrencies-python/的教程,我有点卡住了。我正在定义,然后立即调用一个函数。

我的代码如下:

def merge_dfs_on_column(dataframes, labels, col):
    '''merge a single column of each dataframe on to a new combined dataframe'''
    series_dict={}
    for index in range(len(dataframes)):
        series_dict[labels[index]]=dataframes[index][col]
    return pd.DataFrame(series_dict)
# Merge the BTC price dataseries into a single dataframe
btc_usd_datasets= merge_dfs_on_column(list(exchange_data.values()),list(exchange_data.keys()),'Weighted Price')

我可以清楚地看到我已经定义了merge_dfs_on_column函数,我认为语法是正确的,但是,当我在最后一行调用该函数时,我收到以下错误:

NameError                                 Traceback (most recent call last)
<ipython-input-22-a113142205e3> in <module>()
      1 # Merge the BTC price dataseries into a single dataframe
----> 2 btc_usd_datasets= merge_dfs_on_column(list(exchange_data.values()),list(exchange_data.keys()),'Weighted Price')

NameError: name 'merge_dfs_on_column' is not defined

我已经用Google搜索了答案并仔细检查了语法,但我看不出为什么在调用时无法识别该函数。

python-3.x function jupyter-notebook nameerror
2个回答
3
投票

在调用函数之前,Python解释器不会执行您的函数定义。

仔细检查执行的内容和时间。在Jupyter中,可以从输入顺序运行代码,这似乎是你不小心做的。 (也许试试'全部运行')


0
投票

好吧,如果你是在定义自己,

然后你可能直接从网络上的某个地方复制并粘贴它,它可能包含你可能无法看到的字符。

只需通过键入它来定义该函数并使用pass并注释掉其他代码并查看它是否正常工作。

© www.soinside.com 2019 - 2024. All rights reserved.