摘要: 线程与进程 : https://www.cnblogs.com/yuanchenqi/articles/5733873.html 阅读全文
posted @ 2018-10-24 17:06 Weibull 阅读(153) 评论(0) 推荐(0) 编辑
摘要: # 操作系统模块 # import os# 待续# 解释器模块 # import sys# 待续# 加密 # import hashlib## m = hashlib.md5()# m.update("HelloWorld".encode("utf8"))# print(m.hexdigest()) 阅读全文
posted @ 2018-10-24 17:00 Weibull 阅读(313) 评论(0) 推荐(0) 编辑
摘要: # 封装 # class Bar:# def __init__(self,name,age,content):# self.name = name# self.age = age# self.content = content# def foo(self):# print(self.name,sel 阅读全文
posted @ 2018-10-24 16:57 Weibull 阅读(174) 评论(0) 推荐(0) 编辑