接受1个位置参数,但给了2个错误,但是确实接受了2个

时间:2020-03-26 13:55:53

标签: python

我收到一个错误消息,说一个函数不带2个参数,但是有2个参数。

我的代码:

def update(coin, fiat):
        coinone.set(f"{coin} is worth {fiat}")

错误:

 line 29, in cont
    update(coin, fiat)
TypeError: update() takes 1 positional argument but 2 were given

编辑:需要使用全局变量,因为它不存在

0 个答案:

没有答案