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)区别在于执行力和最佳使用方式