通过python获取当前mac地址的方法如下 (1)通用方法,借助uuid模块def get_mac_address(): import uuid node = uuid.getnode() mac = uuid.UUID(int = node).hex……继续阅读 » 4年前 (2021-03-05) 1426浏览 978个赞
python一个简单的计算过期时间的算法def time_passed(value): now = datetime.now() past = now - value if past.days: return u'%s天前' % past.days mins = past.second……继续阅读 » 4年前 (2021-03-05) 2747浏览 197个赞
python 中yield的用法详解 包含了关键字”yield”的函数就不是普通的函数。当含有这个关键字的函数被调用的时候,这个函数在遇到yield的时候会停止运行,并且返回一个迭代器(iterator)。每次请求一个值,就会执行生成的代码。直到遇到一个yiel……继续阅读 » 4年前 (2021-03-05) 1634浏览 196个赞
python提取网址URL的域名部分#!/usr/bin/python# Desc : fetch the domain name of website import reimport optparse def get_filename(): p = optparse.OptionParser() p.add_optio……继续阅读 » 4年前 (2021-03-05) 2078浏览 1151个赞
python批量下载新浪博客的代码来源:https://github.com/dangoakachan/Dango-Scripts/blob/master/Others/sinablog_download.py# coding=utf-8 import urllib2import sys, osimport reimport stringfr……继续阅读 » 4年前 (2021-03-05) 1445浏览 570个赞
python数组复制拷贝方法 python中直接通过等号赋值实际上只是引用地址的传递如:a = [1,2,3,4,5]b=a 当a的值改变时,b的值也会随之改变如果希望b和a没有关系,可以通过下面的方法……继续阅读 » 4年前 (2021-03-05) 2437浏览 2282个赞
python编写的FTP弱口令扫描器 python FTP暴力破解部分代码#!/usr/local/bin/python#-*- coding: UTF-8 -*-#####################################################################qq:316118740#BLOG:http……继续阅读 » 4年前 (2021-03-05) 3030浏览 1500个赞
Python 扫描IP段 指定端口是否开放 TCP21.py #!/usr/local/bin/python#-*- coding: UTF-8 -*-######################################################……继续阅读 » 4年前 (2021-03-05) 1223浏览 196个赞
python 实现 数独算法# -*- coding: utf-8 -*-'''Created on 2012-10-5@author: Administrator'''from collections import defaultdictimport itertoolsa = ……继续阅读 » 4年前 (2021-03-05) 1397浏览 336个赞
Python 判断文件和文件夹是否存在import osos.path.isfile('test.txt') #如果不存在就返回Falseos.path.exists(directory) #如果目录不存在就返回False……继续阅读 » 4年前 (2021-03-05) 1701浏览 1167个赞
我需要实现一个Windows下远程连接到SSH服务器执行命令的功能,所以就在网上找资料。我的环境是:Windows7 64位,Python 2.7 32位。按照网上的说法,需要下载pycrypto和paramiko两个模块进行安装。最后下载的版本是pycrypto2.3和paramiko1.7.6。 安装过程也比较简单,先安装pycryp……继续阅读 » 4年前 (2021-03-05) 2400浏览 209个赞
python与计算物理:实现数值积分的Simpson方法#coding = utf-8#simpson 法计算积分,数值积分,效果非常理想from math import *def func(x): """ 定义被积分函数 """ return x*si……继续阅读 » 4年前 (2021-03-05) 2252浏览 1822个赞
python采集百度百科代码演示#!/usr/bin/python# -*- coding: utf-8 -*-#encoding=utf-8 #Filename:get_baike.pyimport urllib2,reimport sysdef getHtml(url,time=10): response = urllib2……继续阅读 » 4年前 (2021-03-05) 2151浏览 2866个赞
局域网内有一百多台电脑,全部都是linux操作系统,所有电脑配置相同,系统完全相同(包括用户名和密码),ip地址是自动分配的。现在有个任务是在这些电脑上执行某些命令,者说进行某些操作,比如安装某些软件,拷贝某些文件,批量关机等。如果一台一台得手工去操作,费时又费力,如果要进行多个操作就更麻烦啦。 或许你会想到网络同传, 网络同传是什么?就……继续阅读 » 4年前 (2021-03-05) 1822浏览 421个赞
python的threading和multiprocessing模块转自:http://blog.csdn.net/zhaozhi406/article/details/8137670 前言 这两天为了做一个小项目,研究了一下python的并发编程,所谓并发无非多线程……继续阅读 » 4年前 (2021-03-05) 1542浏览 2376个赞
Python中*args 和**kwargs的用法当函数的参数不确定时,可以使用*args 和**kwargs,*args 没有key值,**kwargs有key值。def fun_var_args(farg, *args): print "arg:", farg for value in args: ……继续阅读 » 4年前 (2021-03-05) 1789浏览 552个赞
python事件信号调度#idle_queue.pyimport Queue#Global queue, import it from anywhere, you get the same object instance.idle_loop = Queue.Queue()def idle_add(func, *args, **kwargs):……继续阅读 » 4年前 (2021-03-05) 2328浏览 500个赞
python下有个paramiko模块,这个模块可以实现ssh登录linux服务器,下面贴出代码,注意,我在centos5.6下,python2.6.5,paramiko-1.7的版本下测试成功。。。转自:http://world77.blog.51cto.com/414605/618425#!/usr/bin/env pythonimport……继续阅读 » 4年前 (2021-03-05) 2203浏览 960个赞
python ftplib模块制作ftp客户端转自:http://blog.csdn.net/xm1331305/article/details/8137638#!/usr/bin/python#-*- coding:utf-8 -*-from ftplib import FTP #加载ftp模块ftp=FTP() ……继续阅读 » 4年前 (2021-03-05) 2702浏览 1545个赞
python实现选择排序算法def ssort(V): #V is the list to be sorted j = 0 #j is the "current" ordered position, start……继续阅读 » 4年前 (2021-03-05) 2323浏览 2649个赞
python按字符翻转字符串 New in python 2.4:a_string = reversed(a_string) New i……继续阅读 » 4年前 (2021-03-05) 3073浏览 643个赞
python清除字符串里的非数字字符import re s = "how19 a*re 254y**ou?" # Using regular expressions print re.sub("\D", "", s) ……继续阅读 » 4年前 (2021-03-05) 2283浏览 427个赞
python四舍五入函数round的用法范例print round(3.4) # 3 print round(3.5) # 4 print round(3.6) # 4 print round(3.6, 0) # 4 print round(1.95583, 2) # 1.96……继续阅读 » 4年前 (2021-03-05) 2953浏览 1542个赞
python在windows下创建隐藏窗口的子进程import subprocessIS_WIN32 = 'win32' in str(sys.platform).lower()def subprocess_call(*args, **kwargs): #also works for Popen. It creates ……继续阅读 » 4年前 (2021-03-05) 2478浏览 2211个赞
python创建只包含指定扩展名文件的目录结构列表#!/usr/bin/python#===============================================================================# Creator: ACHAL RASTOGI# Dedicated to my Love: SHAL……继续阅读 » 4年前 (2021-03-05) 2253浏览 2257个赞
Python删除指定目录下的过期文件import osimport sysimport timeclass DeleteLog: def __init__(self,fileName,days): self.fileName = fileName self.days = days def delet……继续阅读 » 4年前 (2021-03-05) 2023浏览 1874个赞
python简单的计算过期时间的代码 def time_passed(value): now = datetime.now() past = now - value if past.days: return u'%s天前' % past.days mins = past.seconds……继续阅读 » 4年前 (2021-03-05) 2852浏览 1802个赞
python操作sqlite3数据库完全代码# Name: pySnipnix.py# Author: pantuts# Email: pantuts@gmail.com# Description: Saving your snippets to sqlite3 database.# Agreement: You can use, modify……继续阅读 » 4年前 (2021-03-05) 1839浏览 1022个赞
C语言调用python代码来源:http://blog.csdn.net/agoago_2009/article/details/8003549//#========================================================//# author:ago ……继续阅读 » 4年前 (2021-03-05) 2774浏览 1646个赞
用python实现希尔排序算法(shell sort)def shellSort(items): inc = len(items) / 2 while inc: for i in xrange(len(items)): j = i temp = items[i] ……继续阅读 » 4年前 (2021-03-05) 2956浏览 2496个赞
python清除字符串里的非字母字符s = "hello world! how are you? 0" # Short version print filter(lambda c: c.isalpha(), s) # Faster version for long ASCII strings: id_ta……继续阅读 » 4年前 (2021-03-05) 1695浏览 2342个赞
本代码演示了python如何在二进制、十进制、十六进制之间相互转换的代码#!/usr/bin/env python# -*- coding: utf-8 -*-# 2/10/16 base trans. wrote by srcdog on 20th, April, 2009# ld elements in base 2, 10, 16.imp……继续阅读 » 4年前 (2021-03-05) 2327浏览 433个赞
Sphinx的Python客户端示例# coding: utf-8 # sphinxapi.py 可见于 coreseek-4.1-win32\api\目录内 import sphinxapi import pprint spc = sphinxapi.SphinxClient() spc.SetServer('12……继续阅读 » 4年前 (2021-03-05) 2896浏览 489个赞
python各种删除空格的方法汇总,strip删除两个空格,lstrip删除左边的空格,rstrip删除右边的空格" xyz ".strip() # returns "xyz" " xyz ".lstrip() # returns ……继续阅读 » 4年前 (2021-03-05) 2201浏览 1256个赞
在Python中的高斯 – 赛德尔方法Gauss-Seidel method in Python''' x,numIter,omega = gaussSeidel(iterEqs,x,tol = 1.0e-9) Gauss-Seidel method for solving [A]{x} = {b}.……继续阅读 » 4年前 (2021-03-05) 1772浏览 2475个赞
Find the global bounds on the eigenvalues of a tridiagomal matrix in Python''' lamMin,lamMax = gerschgorin(d,c). Applies Gerschgorin's theorem to find the……继续阅读 » 4年前 (2021-03-05) 1190浏览 942个赞
python中的黄金分割法''' a,b = bracket(f,xStart,h) Finds the brackets (a,b) of a minimum point of the user-supplied scalar function f(x). The search starts dow……继续阅读 » 4年前 (2021-03-05) 2677浏览 394个赞
Modified midpoint method for solving the initial value problem in Python''' yStop = integrate (F,x,y,xStop,tol=1.0e-6) Modified midpoint method for solving the……继续阅读 » 4年前 (2021-03-05) 1918浏览 1534个赞
Gauss-Legendre integration in Python''' I = gaussQuad2(f,xc,yc,m). Gauss-Legendre integration of f(x,y) over a quadrilateral using integration order m. ……继续阅读 » 4年前 (2021-03-05) 2841浏览 1551个赞
Python LU 分解LU decomposition in Python''' a = LUdecomp(a). LU decomposition: [L][U] = [a]. The returned matrix [a] = [L\U] contains [U] in the upper trian……继续阅读 » 4年前 (2021-03-05) 3036浏览 629个赞
Householder similarity transformation of matrix in Python''' d,c = householder(a). Householder similarity transformation of matrix [a] to the tridiagonal ……继续阅读 » 4年前 (2021-03-05) 2552浏览 1179个赞
在Python中的线性函数直线插补查找零Find the zero of the linear function straight line interpolation in Python''' root = linInterp(f,x1,x2). Finds the zero of the linear func……继续阅读 » 4年前 (2021-03-05) 2236浏览 1194个赞
LU decomposition of symetric pentadiagonal matrix in Python''' d,e,f = LUdecomp5(d,e,f). LU decomposition of symetric pentadiagonal matrix [f\e\d\e\f]. On ……继续阅读 » 4年前 (2021-03-05) 2721浏览 2812个赞
根据目录下的文件名生成SQL语句#!/usr/bin/python#coding=utf-8import osfrom datetime import datetimepath = "/Users/Demos/Desktop/ss/"id = 0#历遍指定文件夹for x in os.listdir(path):……继续阅读 » 4年前 (2021-03-05) 2230浏览 1357个赞
python sqlite3的常规使用#Filename: DBcon.pyimport sqlite3import timeconn=sqlite3.connect(r'D:\Exercise\Python\DB\example.db')c=conn.cursor()c.execute("Create tab……继续阅读 » 4年前 (2021-03-05) 3090浏览 677个赞