To be a better coder
发布时间:2019-03-06 16:33:52
1.如何反向迭代一个序列2.如何查询和替换一个文本中的字符串3.使用python实现单例模式4.重新实现str.strip()5.闭包6.给列表中的字典排序7.合并两个列表排除重复元素8.打乱一个排好序的列表.........【阅读全文】
发布时间:2019-03-05 16:38:18
Linux Bonding一、什么是bondingLinux bonding 驱动提供了一个把多个网络接口设备捆绑为单个的网络接口设置来使用,用于网络负载均衡及网络冗余二、bonding应用方向1、网络负载均衡对 于bonding的网络负载均衡是我们在文件服务器中常用到的,比如把三块网卡,当做一块来用,解决一个IP地址,流量过大,服务器.........【阅读全文】
发布时间:2019-03-01 13:53:30
[root@localhost /]# [root@localhost /]# cat ./for.py #!/bin/pythonfrom random import randintfrom itertools import chaina=[randint(10,100) for _ in range(20)]b=[randint(10,100) for _ in range(20)]c=[randint(10,100) for _ in range(20)]for n,m,v in zip(a,b,c): print n+m+vcou.........【阅读全文】
发布时间:2019-02-26 10:53:31
[root@localhost /]# [root@localhost /]# cat split.py #!/bin/pythonimport res='aa,bb:cc;dd/tee<ff>gg'def mysplit(s,symbol): t=[s] for num in symbol: res=[] map(lambda x:res.extend(x..........【阅读全文】
发布时间:2019-02-25 17:18:32
[root@localhost /]# [root@localhost /]# cat strduiqi.py #!/bin/pythonimport os, statli=os.listdir('/software/script/shell')st=[n for n in li if n.endswith(('.sh','.py'))]for nm in st: os.chmod(nm,os.stat(nm).st_mode | stat.S_IXGRP)[root@localhost /]# [root@localhost /]# .........【阅读全文】