在if语句中,Python等效于&&(逻辑与)
这是我的代码:
def front_back(a, b): # +++your code here+++
if len(a) % 2 == 0 && len(b) % 2 == 0:
return a[:(len(a)/2)] + b[:(len(b)/2)] + a[(len(a)/2):] + b[(len(b)/2):]
else:
#todo! Not yet done. :P
return
我在IF条件语句中遇到错误。我究竟做错了什么?
回答:
你可能想要and
而不是&&
。
以上是 在if语句中,Python等效于&&(逻辑与) 的全部内容, 来源链接: utcz.com/qa/434082.html