python3.7下 使用apply() 顯示not resolved referenceclass MyThread(threading.Thread):
def __init__(self, func, args):
threading.Thread.__init__(self) self.args = args self.func = func def run(self):
apply(self.func, self.args)
1 回答

莫回?zé)o
TA貢獻(xiàn)1865條經(jīng)驗(yàn) 獲得超7個(gè)贊
首先,這個(gè)apply不是python內(nèi)置函數(shù),所以首先你需要
from apply import apply
這樣子,先import進(jìn)來,如果沒有apply,首先要
pip install apply
添加回答
舉報(bào)
0/150
提交
取消