python缺少一个必需的位置参数?

时间:2019-05-22 10:43:15

标签: function printing output jupyter

我正在定义一个函数并尝试打印该函数的结果,但是却收到错误消息:

  

temp_of_seawater()缺少1个必需的位置参数:'d'

相关代码:

def temp_of_seawater(l, d):                                                                               
    temp_of_seawater = ((gradient * d) + temp_surfacelevel_1)
    return temp_of_seawater(d)
 print("The temperature at your given latitude and depth is:", 
 temp_of_seawater(d) , "\u00b0""C")

0 个答案:

没有答案