摘要: 一、Python DNS域名轮询业务监控 ##!!!查看电脑是否缺少各种安装包 from dns import resolver#dnspython导入方法 import os import httplib2 iplist=[]#定义域名ip列表变量 appdomain = 'www.baidu.c 阅读全文
posted @ 2019-08-03 17:14 Drige 阅读(220) 评论(0) 推荐(1) 编辑
摘要: 一、 1. str1 = 'hello, world!' # 通过len函数计算字符串的长度 print(len(str1)) # 13 # 获得字符串首字母大写的拷贝 print(str1.capitalize()) # Hello, world! # 获得字符串变大写后的拷贝 print(str 阅读全文
posted @ 2019-08-03 16:55 Drige 阅读(173) 评论(0) 推荐(1) 编辑