#coding=utf-8 import re import subprocess def tracertIP(ip): p = subprocess.Popen(['tracert',ip],stdout=subprocess.PIPE) while True: line = p.stdout.readline() if not line: break print line tracertIP('192.168.2.1')…
一 安装,导入模块 安装: pip3 install 模块名称 导入: import module from module.xx.xx import xx from module.xx.xx import xx as rename from module.xx.xx import * 二 random random.random random.random()用于生成一个0到1的随机符点数: 0 <= n < 1.0 random.randint 用于生成一个指定范围内的整数 random.r…