python类计算两个值的和与差

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

我应该介绍该类的两个两个函数,并计算它们的差和和。

我写了这段代码:

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

但是它不会运行。为什么?

python-3.7
1个回答
0
投票

代码中有几个错误:

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