from absl import app, flags, logging
test_absl.py : from absl import app, flags, logging import sys #設置參數,第一個是參數名稱,第二個是參數默認值,無默認值可取 ...
test_absl.py : from absl import app, flags, logging import sys #設置參數,第一個是參數名稱,第二個是參數默認值,無默認值可取 ...
#key-value 字典無下標 所以亂序,key值盡量不要取中文 person_log={ '大二':{ 'Ya Nan':['free','cute','s ...
"常用Tkinter組件的使用" #一、彈出消息框 #1 彈出提示消息框 from tkinter.messagebox import * showinfo(title='提示',message ...
# 主線程與子線程 import threading import time def run(n): print('task',n,threading.current_thread()) ...