0

我正在尝试学习 Coursera 编程入门课程,基本上只是重新输入讲座中给出的示例以确保我理解内容。

通常,这很有效,但现在我遇到了一些代码,由于某种原因在第 1 行之后终止,我不希望它这样做。

def convert_to_celsius(fahrenheit):
    '''(number) --> number
Return the number of Celsius degrees equivalent to fahrenheit degrees.

>>>convert_to_celsius(32)
0
>>>convert_to_celsius(212)
100
'''
    return (fahrenheit - 32) * 5 / 9

这是哪里坏了?如何修复它以使其正常运行?

4

1 回答 1

5

我有点不确定你的问题是什么,但我猜你正在定义一个函数,但从不调用它。为了调用一个函数,你使用它的名字,并提供参数。例如:

#This next block defines the function
def convert_to_celsius(fahrenheit):
    return (fahrenheit - 32) * 5 / 9

#call/use the function
result = convert_to_celsius(100)
#print the results
print(result)
于 2012-10-08T19:02:10.970 回答