使用Python中time.sleep()的時候所以我有一個非常奇怪的錯誤。奇怪ioError在time.sleep()在Python
start = time.time()
# some code goes here
end = time.time()
spent = end - start
time.sleep(1.0101 - spent) # this gives a strange IOError...
我可以修復它嗎?我無法改變花費或1.0101。
編輯:錯誤是:IOError:[Errno 22]無效的參數。
EDIT2:我使用了一個樹莓派2
你能否編輯你的問題以包含確切的錯誤? –
如果花費大於1.0101? –
@JosephFarah這將需要一點時間,但沒關係 – Ace