上一页 1 ··· 6 7 8 9 10 11 12 13 下一页

2022年2月7日

摘要: 恢复内容开始 1. 用vi编辑器,编辑网络设置文件,注意下面文件中的文件目录 修改步骤: 用dd删除uuid 按i进入编辑模式,修改bootproto=static onboot修改为yes 添加ip,netmask,gateway,dns1(可添加多个) 按esc,按:wq退出保存(ctrl+s为 阅读全文
posted @ 2022-02-07 10:41 ttm6489 阅读(334) 评论(0) 推荐(0) 编辑

2022年2月5日

摘要: socketserver 是用来进行多线程的类 1 # author: Roy.G 2 import socketserver 3 class myhandleserver(socketserver.BaseRequestHandler): 4 def handle(self): 5 while T 阅读全文
posted @ 2022-02-05 19:36 ttm6489 阅读(31) 评论(0) 推荐(0) 编辑

2022年1月27日

摘要: 阅读全文
posted @ 2022-01-27 12:08 ttm6489 阅读(29) 评论(0) 推荐(0) 编辑

2022年1月19日

摘要: 阅读全文
posted @ 2022-01-19 12:00 ttm6489 阅读(14) 评论(0) 推荐(0) 编辑

2022年1月17日

摘要: X(n)为随机变量的序列,比如代表投n次硬币,总共出现人头的概率。 这里的a代表事件的概率,比如50% 阅读全文
posted @ 2022-01-17 23:49 ttm6489 阅读(250) 评论(0) 推荐(0) 编辑
摘要: # author: Roy.Gdata={"roy":1,"boy":2}data1=[1,2,3]try: data["roy"] data[5]# except (KeyError,IndexError) as e:except Exception as e: # detect all exce 阅读全文
posted @ 2022-01-17 14:36 ttm6489 阅读(29) 评论(0) 推荐(0) 编辑
摘要: # author: Roy.Ga="self,name,color,age,food"b=a.split(",") # 以, 分开字符串for i in b: print("self."+i+"="+i)class animal(object): def __init__(self,name,col 阅读全文
posted @ 2022-01-17 01:03 ttm6489 阅读(29) 评论(0) 推荐(0) 编辑

2022年1月16日

摘要: # author: Roy.G#1.类 和类的实例化# class Role:# n=100# def __init__(self,name,role,weapon,life=100,money=10000):# self.name=name# self.role=role# self.weapon 阅读全文
posted @ 2022-01-16 17:52 ttm6489 阅读(23) 评论(0) 推荐(0) 编辑

2022年1月11日

摘要: # author: Roy.Gimport rey="dwadwa a123bc edada dwa"print(y)y1=re.match("^dw",y)print(y1)print(y1.group())import osos.path(__file__) 阅读全文
posted @ 2022-01-11 10:55 ttm6489 阅读(18) 评论(0) 推荐(0) 编辑
摘要: # author: Roy.Gimport hashlibm=hashlib.md5()n=hashlib.md5()y3="郭彦华"+"徐敏"y5="郭彦华徐敏"n.update(y5.encode("utf-8"))# m.update(y4.encode("utf-8"))m.update(y 阅读全文
posted @ 2022-01-11 01:02 ttm6489 阅读(19) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页

导航