和条件之间的区别是什么?

时间:2019-03-17 05:37:12

标签: python-3.x if-statement

temp = [-1,1]
first_value = abs(temp[0])
last_value = abs(temp[-1])

if first_value == last_value and sum(temp) == 0 and len(temp) >= 1 :
   print("hurray")

我的代码的o / p:

欢呼声

if first_value == last_value & sum(temp) == 0 & len(temp) >= 1 :
       print("hurray")

1)我已将其替换为符号,从未显示任何输出或错误

2)和符号之间的区别是什么,以及为什么在使用和时有效,为什么使用符号(&)失败

3)区别在于执行力和最佳使用方式

0 个答案:

没有答案