我有一个关于 python 定义流程的问题:
def testCommandA () :
waitForResult = testCommandB ()
if result != '' :
print 'yay'
有没有办法让 waitForResult 等待 testCommandB 返回一些东西(不仅仅是一个空字符串)?有时 testCommandB 什么都不会产生(空字符串),我不想传递空字符串,但是一旦我在 waitForResult 中得到一个字符串,那么 testCommandA 将继续运行。可能吗?
提前致谢