摘要:
1、cat /etc/inittab 设定机器的运行级别: # 0 - halt (Do NOT set initdefault to this) # 1 - Single user mode # 2 - Multiuser, without NFS (The same as 3, if you d 阅读全文
摘要:
线程的使用书写示例:(1)import threadingimport timedef run(str1): print("task:", str1) time.sleep(5) for i in range (30): t1 = threading.Thread(target= run ,args 阅读全文