赞
踩
b = 1 if len(num1) < len(num2) else b = 2
b = 1 if len(num1) < len(num2) else 2
注意:if else写法必须写全,有if 必须有else
在return时使用例子:return com[2] if com[0] == float("-inf") else com[0]
累加的形式也可,如:newBit += "1" if i == "0" else "0"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。