我怎样才能节省时间。时间

时间:2015-11-07 19:57:18

标签: python time

Distance=200

import time

Time_started=time.ctime()
question=(input("has car gone pass sensor 1 \n:"))
if question=="yes":
        print ("the time is",Time_started,"seconds")

Time_ended=time.ctime()
question2=(input("has car gone pass sensor 2 \n:"))
if question2=="yes":
    print ("the time is",Time_ended,"seconds")
print ("")

Time_taken= (time.ctime() - Time_started)

print ("it took %f1 seconds" % Time_taken , "to travel 200m" )

我想知道是否有可能让time.ctime远离彼此以获得秒数

3 个答案:

答案 0 :(得分:0)

为什么不使用time.time()而不是time.ctime()?

答案 1 :(得分:0)

您可以使用:time.time()time.ctime(secs)

Time_started=time.time()

如果你想将其转换为用户友好的东西,你可以这样做:

print ("the time is",time.ctime(Time_started))

答案 2 :(得分:0)

你说你只想要time.ctime,因为它是用户友好的,所以你可以这样做:

使用time.time()初始化Time_startedTime_ended,并在需要计算某些内容时使用它们(例如,它们之间的差异)。 但是,当您想要向用户打印时间时,请使用time.ctime(Time_started)time.ctime(Time_ended)。 time.ctime将返回一个描述您提供它的时间的漂亮字符串。