课程
/后端开发
/Python
/python进阶
t=(t2-t1)*1000 if unit=='ms' else (t2-t1)
2019-09-25
源自:python进阶 2-13
正在回答
参考短路运算符可以写成这样:
t = unit=='ms' and (t2 - t1) * 1000 or (t2 - t1)
可以理解为:
if unit=='ms': t = (t2-t1)*1000else: t = t2 - t1
ms 指的是毫秒,t的默认单位是秒, 意思是假如单位是毫秒,所以要乘以1000,
举报
学习函数式、模块和面向对象编程,掌握Python高级程序设计