python讓程序繼續(xù)執(zhí)行的方法:
一、使用到的函數(shù)或庫
1.cv2.imshow()
2.cv2.waitKey()
3.time.sleep()
4.cv2.putText()
5.np.zeros()
二、程序說明:
運行后,無操作則等待一段時間后繼續(xù)運行程序;若按空格鍵暫停運行程序,再按空格鍵繼續(xù)運行程序。
importtime
importcv2
importnumpyasnp
defpause_key(keypress,seconds):
key=0
print('準備開始,按空格鍵暫停及繼續(xù)。。。。。。\n')
img=np.zeros((100,200,3),np.uint8)
img.fill(255)
cv2.putText(img,'!!!!!!',(10,50),cv2.FONT_HERSHEY_COMPLEX,2.0,(100,200,200),5)
cv2.imshow('attention!',img)
forsecondinrange(seconds):
input_kb=cv2.waitKey(1)&0xFF
ifinput_kb==ord(''):
print('paused')
cv2.waitKey(0)
print('continued')
time.sleep(1)
print(second)
second+=1
cv2.destroyAllWindows()
if__name__=='__main__':
pause_key(keypress='',seconds=10)
以上內(nèi)容為大家介紹了python如何讓程序暫停執(zhí)行和繼續(xù)執(zhí)行?希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。