python秒表游戏代码_python编程实战:制作秒表程序
現如今生活節奏的加快,再加個人們對營養的需求也是在不斷加大。我們平時所食用的食物只有在它烹飪到剛剛好的時候才會把它自身的營養充分的發揮出來,可是我們一般對于它的時間方面不是很好把握,所以對于這一點,秒表計時器就幫了我們很大的忙。秒針在生活中一般用作精確計時,作用很大。那你知道用我們萬能的python怎么做秒表嗎?下面我們來看看吧~
代碼:#! python3
# stopwatch.py - A simple stopwatch program.
import time
# Display the program's instructions.
print('Press ENTER to begin. Afterwards, press ENTER to "click" the stopwatch. \
Press Ctrl-C to quit.')
input() ? ? ?# press Enter to begin
print('Started.')
startTime = time.time() ?# get the first lap's start time
lastTime = startTime
lapNum = 1
# Start tracking the lap times.
try:
while True:
input()
lapTime = round(time.time() - lastTime, 2)
totalTime = round(time.time() - startTime, 2)
print('Lap #%s: %s (%s)' % (lapNum, totalTime, lapTime), end='')
lapNum += 1
lastTime = time.time() # reset the last lap time
except KeyboardInterrupt:
# Handle the Ctrl-C exception to keep its error message from displaying.
print('\nDone.')
以上就是python制作秒表程序的過程,看起來復雜,但其實很簡單,快試試吧~
總結
以上是生活随笔為你收集整理的python秒表游戏代码_python编程实战:制作秒表程序的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: HTML CSS 背景图居中属性back
- 下一篇: VO,DTO,BO,POJO,PO的概念