我应该介绍该类的两个两个函数,并计算它们的差和和。
我写了这段代码:
class station:
def __station(d1,d2,a,b)
d1=int(input('temperature of first station: '))
d2=int(input('temperature of second station: '))
a=d1+d2
b=d2-d1
print('sum of temperature' ,a)
print('difference of temperature',b)
return
但是它不会运行。为什么?
代码中有几个错误: