在一个文件test1.py
中,我正在调用另一个文件test2.py
的函数。
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 "
我应该将打印语句的顺序作为
但为什么我要反向订购
??????