Python教程
Python是一种面向对象的解释型...
-
python 抓取期货咨询供分析 python"># encoding:utf-8 import sys reload(sys) sys.setdefaultencoding("utf8") import urllib, urllib2 from pprint import pprint from collections import Counter, OrderedDict from ... 继续阅读python 抓取期货咨询供分析
:2018-05-19
-
python ping网段设备 python">#!/usr/bin/env python #coding:utf-8 import os,time,random,threadpool,sys from progressbar import * COUNT=0 tit=1000 PINGIP=[] def main(): ipd=None if len(sys.argv)... 继续阅读python ping网段设备
:2018-05-19
-
Python获取局域网中IP及对应的MAC地址 python">#!/usr/bin/env python2.7 # -*- coding: utf-8 -*- from scapy.all import srp, Ether, ARP, conf lan = '10.10.10.0/24' ans, unans = srp(Ether(dst="FF:FF:FF:FF:FF:FF... 继续阅读Python获取局域网中IP及对应的MAC地址
:2018-05-19
-
python3 取计算机名末尾数字+10 拼接成IP地址 python">#python3 取计算机名末尾数字+10 拼接成IP地址 #python3 练手 import socket import re import winreg import os #取计算机名方法1 hostname=socket.gethostname() print(hostname) #从环境变量中读计算... 继续阅读python3 取计算机名末尾数字+10 拼接成IP地址
:2018-05-19
-
python 利用xlrd模块实现Python读取Excel文档 python"># -*- coding: cp936 -*- #python读取excel import xlrd def main(): xls=xlrd.open_workbook("d:\\11.xls") try: mysheet=xls.sheet_by_name("Sheet... 继续阅读python 利用xlrd模块实现Python读取Excel文档
:2018-05-19
-
python 用python脚本监控并发量 该脚本作用用于查询日志过去一分钟内的并发量,并发单位位1分钟,结果打印在标准输出中,可以配合一些软件实现日志的并发实时监控,比如zabbix。“`python ! /usr/local/bin/python3 import sys import re import datetime import os def generate_previous_mi... 继续阅读python 用python脚本监控并发量
:2018-05-19
-
python 打印斐波拉契数列 python">#打印斐波拉契数列 #!/usr/bin/python def feibolaqi(n): if n == 0 or n == 1: return n else: return feibolaqi(n-1) + feibolaqi(n-2) num = int(raw_input('plea... 继续阅读python 打印斐波拉契数列
:2018-05-19
-
python创建桌面快捷方式的代码 有了pywin32是不是就能在Windows上为所欲为了? 是的。 python"> # -*- coding: cp936 -*- # import os import pythoncom from win32com.shell import shell from win32com.shel... 继续阅读python创建桌面快捷方式的代码
:2018-05-19
-
python ip反查 python">#!/usr/bin/python2.7 # -*- coding:utf-8 -*- import urllib,urllib2 import re import subprocess import sys output='' def html(html): #print str response=urllib2.urlopen... 继续阅读python ip反查
:2018-05-19
-
python 对比list的处理速度 python">#网上代码 def open_httptxt(): #打开TXT文本写入数组 st=time.clock() try: passlist = [] list_passlist=[] xxx = file('http.txt', 'r') for xxx_... 继续阅读python 对比list的处理速度
:2018-05-19