爲了舉例,我定義了一個包含特定條形碼和日期時間的字典。在python中跟蹤多個已用時間
我想從當前字典中的時間減去當前時間,這對於一個工作,但我不知道如何我可以爲他們每個人。
所以我想要程序要做的是跟蹤時間,當時間到了0,然後超過時間,例如報警打開。但我想跟蹤字典中的所有內容。
這裏是我當前的代碼,現在我一直是很簡單的:
from datetime import *
import time
dict = {'619999': '2017-04-22 11:40:00', '0991626': '2017-05-20 11:40:00', '177797': '2017-06-15 11:40:00'}
def check_elapsed_time():
while True:
now = time.strftime('%Y-%m-%d %H:%M:%S')
current_time = datetime.strptime(now, '%Y-%m-%d %H:%M:%S')
component_max_time = datetime.strptime(dict['619999'], '%Y-%m-%d %H:%M:%S')
elapsed_time = component_max_time - current_time
time.sleep(1)
print(elapsed_time)
check_elapsed_time()
這是我近似lwas ooking。非常感謝!這看起來比我想象的要簡單得多。 – stickfigure4