摘要: 集合-set 集合内的数据对象都是唯一的-作用:去重集合是无序的存储结构,集合中的数据没有先后关系集合内的元素必须是不可变对象集合是可迭代的对象-即:可用for进行遍历集合的作用主要有两个:去重,关系测试(交集,并集,差集,反向差集,子集) 1 # 创建set 2 set1 = set() # 使用 阅读全文
posted @ 2019-12-12 11:27 FcBlogs 阅读(177) 评论(0) 推荐(0) 编辑
摘要: PYC “.pyc”文件是python执行前进行的简单编译的保存文件 python文件运行过程: 第一次执行: python会先进行简单编译并把编译结果(pyCodeObject)存在内存中 > 用python解释器解释pyCodeObject > 执行结束后,将pyCodeObject放入“.py 阅读全文
posted @ 2019-11-27 13:30 FcBlogs 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Data Type number: intger: 32位机器上为 -2**31 - 2**31 64位机器上为-2**63 - 2**63 在python 2 中年当字符串超了后,会自动变成long intger 在python 3 中没有相关的机制,无论intger多大均为int类型 16进制表 阅读全文
posted @ 2019-11-20 22:02 FcBlogs 阅读(128) 评论(0) 推荐(0) 编辑
摘要: charater encoding First of all computer only know 0 and 1 then sientist use binary to express the number large than one 255 1111 1111 then sientist ma 阅读全文
posted @ 2019-11-12 20:35 FcBlogs 阅读(128) 评论(0) 推荐(0) 编辑
摘要: Zabbix使用snmp agent管理设备 适用范围: 1.一般用于管理网络设备及其他不支持或者不愿意安装zabbix anget的设备; SNMP简介 1.snmp(simple network management protocol)简单网络管理协议 2.共有三个版本V1 V2c V3 其中V 阅读全文
posted @ 2019-10-27 23:57 FcBlogs 阅读(1771) 评论(0) 推荐(0) 编辑
摘要: Part1.安装操作系统Centos7 1.最小化安装 2.虚拟机安装 3.修改网络参数 # yum -y install vim #vim /etc/sysconfig/network-scripts/ifcfg-ens33 BOOTPROTO=static ONBOOT=yes IPADDR=1 阅读全文
posted @ 2019-10-26 12:09 FcBlogs 阅读(548) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/machangwei-8/p/9572036.html 阅读全文
posted @ 2019-08-29 14:45 FcBlogs 阅读(94) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/RaBo123/article/details/84637417 阅读全文
posted @ 2019-08-29 14:16 FcBlogs 阅读(44) 评论(0) 推荐(0) 编辑
摘要: Printf的作用及应用场景 1.Printf可以将输出的结构格式化,且支持一些特殊的字符,典型的格式化输出如cat等; 2.Printf应用于当cat无法调整出我们满意的输出格式时使用; 3.Printf可以在awk中使用,是awk编程中唯一的输出方式; Printf的命令格式及参数 阅读全文
posted @ 2019-08-29 10:33 FcBlogs 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 正则表达式与通配符 1.正则表达式用来在文件中匹配符合条件的字符串-包含匹配,命令如:grep、awk、sed等命令 2.通配符用来匹配符合条件的文件名-完全匹配,命令如:ls、find、cp等bash自建命令 通配符 1."*" 意为0到无穷大的任意字符 2."?" 意为一定存在的一个任意字符 3 阅读全文
posted @ 2019-08-28 17:59 FcBlogs 阅读(86) 评论(0) 推荐(0) 编辑