为了账号安全,请及时绑定邮箱和手机立即绑定

这个ms传入t=(t2-t1)*1000 if unit=='ms' else (t2-t1)不懂

t=(t2-t1)*1000 if unit=='ms' else (t2-t1)

正在回答

3 回答

参考短路运算符可以写成这样:

t = unit=='ms' and (t2 - t1) * 1000 or (t2 - t1)

1 回复 有任何疑惑可以回复我~

t=(t2-t1)*1000 if unit=='ms' else (t2-t1)

可以理解为:

if unit=='ms':
    t = (t2-t1)*1000
else:
    t = t2 - t1

1 回复 有任何疑惑可以回复我~

ms 指的是毫秒,t的默认单位是秒, 意思是假如单位是毫秒,所以要乘以1000,

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

这个ms传入t=(t2-t1)*1000 if unit=='ms' else (t2-t1)不懂

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信