2019年4月28日

摘要: import osdef fun1(path1): stack = [] stack.append(path1) # print(stack) while len(stack) != 0 : path1 = stack.pop() dir_path = os.listdir(path1) for i 阅读全文
posted @ 2019-04-28 15:02 泡面小网管 阅读(93) 评论(0) 推荐(0) 编辑

2019年4月26日

摘要: import os def fun1(path1): stack = [] #设定一个列表 stack.append(path1) # print(stack) while len(stack) != 0 : path1 = stack.pop() #列表后进先出 dir_path = os.lis 阅读全文
posted @ 2019-04-26 16:43 泡面小网管 阅读(204) 评论(0) 推荐(0) 编辑

2019年4月25日

摘要: # --*-- coding: utf-8 --*--# create by xiaocaiji#异常处理父类会覆盖子类,多层嵌套错误也能检测#格式中else也可以换成finally,意味无论前面有没有错误,finally中语句都要执行,常用语文件操作'''格式1:try: passecpect N 阅读全文
posted @ 2019-04-25 17:06 泡面小网管 阅读(128) 评论(0) 推荐(0) 编辑
摘要: # --*-- coding: utf-8 --*--# create by xiaocaiji#偏函数 把一个参数固定住,形成一个新的函数import functoolsprint(int('1010',base=10))int = functools.partial(int,base=2) #生 阅读全文
posted @ 2019-04-25 15:34 泡面小网管 阅读(112) 评论(0) 推荐(0) 编辑
摘要: # --*-- coding: utf-8 --*--# create by xiaocaijiwhile 1: str_ip = input("input a IP:") list_ip = str_ip.split('.') if len(list_ip) < 4: print("error I 阅读全文
posted @ 2019-04-25 09:09 泡面小网管 阅读(1714) 评论(0) 推荐(0) 编辑

2019年4月23日

摘要: 1.for实现: str1 = str.strip(input("please input a str:"))n = 1i = 0for i in range(len(str1)-1): if str.isalnum(str1[i]) != str.isalnum(str1[i+1]): n += 阅读全文
posted @ 2019-04-23 17:35 泡面小网管 阅读(625) 评论(0) 推荐(0) 编辑

2019年4月12日

摘要: #!/usr/bin/python # --*-- coding: utf-8 --*-- directory={ "张三":16, "李四":46, "王二":56, "赵武":32, "小白":12} #定义一个空的字典 dire={} print(type(dire)) #输出整个字典 pri 阅读全文
posted @ 2019-04-12 09:57 泡面小网管 阅读(168) 评论(0) 推荐(0) 编辑

2019年4月11日

摘要: 1.zabbix要修改密码,首先你有要zabbix数据库root权限 # mysql -uroot -p 2.选择zabbix数据库,zabbix登录的账号密码记录在users表里面 >use zabbix; 3.修改admin密码 >update users set passwd='4e4d6c3 阅读全文
posted @ 2019-04-11 15:58 泡面小网管 阅读(228) 评论(0) 推荐(0) 编辑

2019年4月9日

摘要: #!/usr/bin/python # --*-- coding: utf-8 --*-- name=["zhangsan","lisi","wanger","niudan"]print(name) #name.insert(num,key) 向列表中某位置中插入一个值 name.insert(1, 阅读全文
posted @ 2019-04-09 17:33 泡面小网管 阅读(91) 评论(0) 推荐(0) 编辑

导航