摘要:
1 格式化输出 练习:用户输入姓名、年龄、工作、爱好 ,然后打印成以下格式 info of Egon Name : Egon Age : 22 Sex : male Job : Teacher end 小练习 name = input('输入名字') age = input('输入年龄') work 阅读全文
摘要:
###################### 线程池 ############ from concurrent.futures import ThreadPoolExecutor import time def task(arg): print(arg) time.sleep(1) pool = ThreadPoolExecutor(5) for i in range(50)... 阅读全文