新聞中心
現(xiàn)如今生活節(jié)奏的加快,再加個人們對營養(yǎng)的需求也是在不斷加大。我們平時所食用的食物只有在它烹飪到剛剛好的時候才會把它自身的營養(yǎng)充分的發(fā)揮出來,可是我們一般對于它的時間方面不是很好把握,所以對于這一點,秒表計時器就幫了我們很大的忙。秒針在生活中一般用作精確計時,作用很大。那你知道用我們?nèi)f能的python怎么做秒表嗎?下面我們來看看吧~

南丹網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,南丹網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為南丹成百上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的南丹做網(wǎng)站的公司定做!
代碼:
#! 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制作秒表程序的過程,看起來復(fù)雜,但其實很簡單,快試試吧~
當(dāng)前文章:創(chuàng)新互聯(lián)Python教程:python編程實戰(zhàn):制作秒表程序
分享URL:http://www.dlmjj.cn/article/djjdhoe.html


咨詢
建站咨詢
