最佳答案
对于以下样本:
def fuctionName(int, bool):
if int in range(...):
if bool == True:
return False
else:
return True
有办法跳过第二个 if 语句吗?只是告诉计算机返回与布尔值 bool
相反的值?