0
我有這樣的功能:呼叫python腳本的功能,然後檢查是否狀態
def ContentFunc():
storage = StringIO()
c = pycurl.Curl()
c.setopt(c.URL, url)
c.setopt(c.WRITEFUNCTION, storage.write)
c.perform()
c.close()
content = storage.getvalue()
while True:
ContentFunc()
if "word" in content:
out = open('/tmp/test', 'a+')
我想從content = storage.getvalue()
追加content
。但不起作用。
的錯誤:
NameError: name 'content' is not defined
你能幫助我嗎?
'返回content'? – vaultah
是的..並將其附加到測試文件.... – MLSC
如何從ContentFunc中返回一些內容? – vaultah