Python的等同于&&(逻辑
这是我的代码:
# F. front_back
# Consider dividing a string into two halves.
# If the length is even, the front and back halves are the same length.
# If the length is odd, we'll say that the extra char goes in the front half.
# e.g. 'abcde', the front half is 'abc', the back half 'de'.
# Given 2 strings, a and b, return a string of the form
# a-front + b-front + a-back + b-back
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
而不是&&
。
Python使用and
和or
条件。
即
if foo == 'abc' and bar == 'bac' or zoo == '123':
# do something
两点评论:
and
和or
进行逻辑运算。