在Python中的程序中打印两个点之间的时间

这个问题在这里已经有了答案:

  • 如何在Python中获取当前时间? 27个答案

  • import time
    s=time.time()
    question1 = input("What is your favorite game ?")
    e=time.time()
    print(e-s)
    

    time.time()返回自纪元以来的秒数,以浮点数表示。


    这个怎么样?

    from datetime import datetime
    start = datetime.now()
    question1 = input("What is your favorite game ?")
    end = datetime.now()
    print(str(end - start))
    
    链接地址: http://www.djcxy.com/p/40911.html

    上一篇: Printing the time between 2 points in a program in Python

    下一篇: Access Real Time on Computer