簡易秒錶
idle、python3.8.0
1、秒錶可以讀取並顯示開始時間和結束時間;
2、計算並顯示時間差;
```python
class mytimer:
def __repr__(self):
return "mytime介紹:這是一款簡易的計時裝置。"
def start(self):
self.first = t.localtime()
print("現在開始計時!")
self.flag = 0
self.out()
print(self.now)
def __init__(self):
self.unit = ['年',"月","日","時","分","秒"]
self.prompt = "計時未開始!"
self.first = 0
self.second = 0
self.falg = 0
self.lasted =
self.buff =
print("未開始計時!")
def stop(self):
self.second = t.localtime()
print("計時結束!")
self.flag = 1
self.out()
print(self.now)
self.durch()
def durch(self):
print("經過的時間為:")
self.prompt = "總共執行了:"
for index in range(6):
if self.lasted[index]:
self.prompt += (str(self.lasted[index]) + self.unit[index])
print(self.prompt)
def out(self):
if self.flag == 0:
self.flag_time = self.first
print("正在讀取開始時間")
if self.flag == 1:
self.flag_time = self.second
print("正在讀取結束時間")
self.now = "當前時間為:"
for index in range(6):
self.now += (str(self.buff[index]) + self.unit[index])
for index in range(6):
self.buff.pop()
測試:
>>> t1 = mytimer()
未開始計時!
>>> t1.start()
現在開始計時!
正在讀取開始時間
當前時間為:2023年11月2日14時53分25秒
>>> t1.stop()
計時結束!
正在讀取結束時間
當前時間為:2023年11月2日14時53分32秒
經過的時間為:
總共執行了:7秒``
第乙個微信小專案
一 所需要的七個第三方庫及其安裝 1 pillow pil python imaging library,已經是 python 平台事實上的影象處理標準庫。pil功能非常強大,但api卻非常簡單易用。如果安裝了anaconda,pillow就已經可用了。否則,需要在命令列下通過pip安裝 pip i...
第一Python第乙個爬蟲專案
完整程式碼 import urllib.request url headers req urllib.request.request url url,headers headers response urllib.request.urlopen req print response.read dec...
python第乙個程式設計 第乙個 Python 程式
簡述 安裝完 python 後,windows 中 開始選單或安裝目錄下就會有 idle 開發 python 程式的基本 ide 整合開發環境 幫助手冊 模組文件等。linux 中 只需要在命令列中輸入 python 命令即可啟動互動式程式設計。互動式程式設計 互動式程式設計不需要建立指令碼檔案,是...