2019年11月14日

摘要: https://blog.csdn.net/imw_mg/article/details/77343284 PyCharm是一款很好用的编写Python工程的IDE,用PyCharm创建一个Python文件或者向工程添加一个.py文件时,为了更好的使所编写的代码在各操作环境更好的运行,我们往往需要在 阅读全文

posted @ 2019-11-14 17:36 Max404 阅读(170) 评论(0) 推荐(0) 编辑

摘要: server from multiprocessing import Process import socket,sys,os class MyProcess(Process): def __init__(self,args): super().__init__() self.args = args 阅读全文

posted @ 2019-11-14 00:28 Max404 阅读(530) 评论(0) 推荐(0) 编辑