摘要:
恢复内容开始 1. 用vi编辑器,编辑网络设置文件,注意下面文件中的文件目录 修改步骤: 用dd删除uuid 按i进入编辑模式,修改bootproto=static onboot修改为yes 添加ip,netmask,gateway,dns1(可添加多个) 按esc,按:wq退出保存(ctrl+s为 阅读全文
摘要:
socketserver 是用来进行多线程的类 1 # author: Roy.G 2 import socketserver 3 class myhandleserver(socketserver.BaseRequestHandler): 4 def handle(self): 5 while T 阅读全文
摘要:
X(n)为随机变量的序列,比如代表投n次硬币,总共出现人头的概率。 这里的a代表事件的概率,比如50% 阅读全文
摘要:
# 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 阅读全文
摘要:
# 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 阅读全文
摘要:
# 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 阅读全文
摘要:
# author: Roy.Gimport rey="dwadwa a123bc edada dwa"print(y)y1=re.match("^dw",y)print(y1)print(y1.group())import osos.path(__file__) 阅读全文
摘要:
# 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 阅读全文