我有这段代码:
def rho(switch,y,h):
if switch=1:
return 1.255
if switch=2:
return 1.255*np.exp(-y/h)
显然if
语句有语法错误,我无法弄清楚它是什么。
答案 0 :(得分:0)
def rho(switch,y,h):
if switch == 1:
return 1.255
if switch == 2:
return 1.255*np.exp(-y/h)
==
代替=
语句中的if