导语:
本文主要介绍了关于python编程实战:制作秒表程序的相关知识,包括python编程入门到实践,以及python 计时器这些编程知识,希望对大家有参考作用。
现如今生活节奏的加快,再加个人们对营养的需求也是在
不断增加。我们平时吃的食物,只有在烹调到恰到好处的时候,才会充分发挥其自身的营养成分,但是我们一般都没有很好的把握它的时间,所以为此,秒表计时器会帮我们忙得不可开交。秒针在生活中一般用于精确计时,起着非常重要的作用。那么你知道如何用我们全能的python制作秒表吗?一起来看看吧~
代码:
<p>#! 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.')<br/></p>
以上就是用python制作秒表程序的过程。它看起来很复杂,但实际上非常简单。试试看~
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中找到不定积分08/26
- ♥ 如何在python进程池中使用apply?12/23
- ♥ python中的模块是什么09/06
- ♥ Python这么火,你想学吗?听听华为工程师怎么说...12/05
- ♥ 如何在python中将字符串转换为小写08/17
- ♥ python如何表示空值08/17
内容反馈