在一個文件中,test1.py
,我打電話另一個文件的功能,test2.py
。python中的sleep cmd是如何工作的?
test1.py
def attente_evenements(self):
self.checkLog.evnt_findLogIdentity()
print "\t\t\t SHOULD HAVE GOT THE LOG FILE \n"
test2.py
def evnt_findLogIdentity(self):
sleep(180)
print "\t\tLogging in is done \n "
我應該得到的打印語句的順序在完成
- 記錄
- 應該拿日誌文件
但爲什麼我按相反的順序
- 應該拿日誌文件
- 登錄完成
我得到???? ??
睡眠電話是無關緊要的。嘗試刪除它;你應該得到完全相同的東西。 – NightShadeQueen
修復您的打字, – FallenAngel
這應該工作正常,您的代碼必須有其他錯誤 – akalikin