def lookResult():
GlobalVal.username = GlobalVal.root.usernameInput.get()
if not os.path.exists(GlobalVal.username):
m_title = "????"
m = '??? \' %s \' ?????'% GlobalVal.username
messagebox.showwarning(m_title, m)
else:
def sub_lookResult():
subprocess.call('explorer %s' % GlobalVal.username)
t_lookResult = threading.Thread(target=sub_lookResult, name='sub_lookResult')
t_lookResult.start()
# ??????
评论列表
文章目录