下面的or应该改成and

来源:9-5 Python函数参数

katy1206

2022-04-22 13:17

def my_abs(x):
if not isinstance(x, int) or not isinstance(x, float):
print('param type error.')
return None
if x >= 0:
return x
else:
return -x

写回答 关注

1回答

  • weixin_慕勒3528622
    2022-07-03 17:07:27

    对的,应该是and

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154174 学习 · 1075 问题

查看课程

相似问题