多进程 Processdef run_something(name):
print("这里使用 %s进程 处理 %s." % (os.getpid(), name))
if __name__ == '__main__':
2017-03-07