python文件拷贝代码,这段代码演示了通过文件名拷贝和通过文件对象拷贝import shutil # copy files by name shutil.copyfile('/path/to/file', '/path/to/other/phile') # copy file-objec……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1335浏览 2687个赞
python获得文件大小的代码TheFileSize = os.path.getsize(TheFileName) ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2428浏览 375个赞
python字符串和整形的相互转换print int("42"), str(42) # convert from/to stringprint int("42") + 1 # force addition……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2821浏览 613个赞
python获取数组元素的个数mySeq = [1,2,3,4,5] len(mySeq) ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1750浏览 900个赞
python更新列表(数组)aList = [123, 'abc', 4.56, ['inner', 'list'], (7-9j)]print aList[2]aList[2] = 'float replacer'print aListaList.append(&……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1494浏览 2839个赞
遗传算法的神经网络python实现代码## {{{ http://code.activestate.com/recipes/578241/ (r1)from operator import itemgetter, attrgetterimport mathimport randomimport stringimport timeitfrom……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2687浏览 2564个赞
python列表操作:追加元素到列表scores = ["1","2","3"]# add a scorescore = int(raw_input("What score did you get?: "))scores.append(score)# list hi……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2037浏览 2435个赞
python列表操作extend和append的区别演示代码li = ['a', 'b', 'c'] li.extend(['d', 'e', 'f']) print li pri……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2389浏览 533个赞
python检查字符串是否是正确的ISBNdef isISBN(isbn): """Checks if the passed string is a valid ISBN number.""" if len(isbn) != 10 or not isbn[:9].isd……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2100浏览 2061个赞
如果是以指定的字符串结束则返回Truename = raw_input('What is your name? ')if name.endswith('Yin'): print 'Hello, Mr. Yin'……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1150浏览 2067个赞
python检查指定的文件是否存在import os def file_exists(file_name): if os.path.exists(file): return '%s is found' % file_name else: return ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2046浏览 1043个赞
python支持两个注释方法,#和三个单引号,#用于单行注释,三个单引号用于多行注释# single line comment '''''Multi-line string. Not a comment in itself. But it is usually used as the firs……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1400浏览 329个赞
python 列表操作:插入元素到列表li = ['a', 'b', 'mpilgrim', 'z', 'example'] li.insert(2, "new") p……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2942浏览 680个赞
python在字符串中查找子字符串,如果找到则返回子字符串的位置,如果没有找到则返回-1S = 'xxxxSPAMxxxxSPAMxxxx'where = S.find('SPAM') # search for positionprint where ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2388浏览 1750个赞
python字符串对其居中的演示代码,下面的代码可以让字符串居中,左对齐和右对齐,字符串长度设置为50,居中后左右补充空格,右对齐会在左侧补充空格string1 = "Now I am here."print string1.center( 50 )print string1.rjust( 50 )print string1.……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2692浏览 2755个赞
python列表连接添加性能测试代码L = [1, 2]L = L + [3] # concatenate: slowerprint LL.append(4) # faster, but in-placeprint LL = L + [5, 6] # concatenate: slo……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1221浏览 2899个赞
python创建列表并给列表赋初始值演示代码aList = [123, 'abc', 4.56, ['inner', 'list'], 7-9j]anotherList = [None, 'something to see here']print aListprint……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2165浏览 638个赞
python for each遍历字典D = {'a':1, 'b':2, 'c':3}for key in D: print key, D[key]……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2169浏览 1167个赞
python提取字典的key列表,这段代码可以把字典的所有key输出为一个数组d2 = {'spam': 2, 'ham': 1, 'eggs': 3} # make a dictionaryprint d2 ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2201浏览 839个赞
python获取指定路径下所有指定后缀的文件# 获取指定路径下所有指定后缀的文件# dir 指定路径# ext 指定后缀,链表&不需要带点 或者不指定。例子:['xml', 'java']def GetFileFromThisRootDir(dir,ext = None): allfiles……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2564浏览 890个赞
python只在需要的时候应用装饰排序 def lazyDSU_sort(seq, keys, warn=False): """Return sorted seq, breaking ties by applying keys only when needed. If ``warn``……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1292浏览 560个赞
python通过进程内通信实现的聊天室程序代码#!/usr/bin/env python# Added by <ctang@redhat.com>import sysimport osfrom multiprocessing import connectionADDR = ('', 9997)AUTH_KEY……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1395浏览 2041个赞
coreseek自带了mssql的python数据源演示,我简单的修改了一下,用于mysql测试通过# -*- coding:utf-8 -*-# coreseek3.2 4.1 python source演示操作mysql数据库# author: 75271.com# date: 2012-09-13 10:20from os import ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1168浏览 2675个赞
python将英文单词表示的数字转换成阿拉伯数字import re_known = { 'zero': 0, 'one': 1, 'two': 2, 'three': 3, 'four': 4, ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1755浏览 1126个赞
python装饰器,用来计算指定函数的运行时间def GetRunTime(func): def check(*args, **args2): startTime = datetime.datetime.now() f = func(*args,**args2) endTime = dateti……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2420浏览 1564个赞
python中发送邮件的代码片段 来源:http://www.cnblogs.com/xiaowuyi/archive/2012/03/17/2404015.html python中email模块使得处理邮件变得比较简单,今天着重学习了一下发送邮件的具体做法,这里写写……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2252浏览 909个赞
开启用户验证下的gridfs 连接使用,在执行脚本前可以在python shell中from pymongo import Connectionfrom gridfs import *con = Connection(“mongodb://admin:admin@127.0.0.1:27017”)#用URI的方式建立数据库的链接,当然……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2333浏览 1885个赞
python获得文件的创建时间和修改时间并输出的代码,需要用户从控制台输入文件路径import os.path, timeimport exceptionsclass TypeError (Exception): passif __name__ == '__main__': if (len(os.sys.argv)……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1950浏览 1879个赞
bootstrapping and forward curve生成python范例## Description: example of a bootstrapping and forward curve generation# script, this can be used to build a set of curves for differ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1201浏览 2776个赞
python正则表达式提取网页URLimport reimport urlliburl="http://www.itokit.com"s=urllib.urlopen(url).read()ss=s.replace(" ","")urls=re.findall(r"<……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2498浏览 2854个赞
Windows下Python获取磁盘空闲空间并写入日志from ctypes import *import timeimport win32filerun = Truelogfile = open('.\\log.out','w+');#open log fileinput = raw_input(&q……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1500浏览 2926个赞
用urllib按照百度音乐分类下载mp3。#!/usr/bin/env python#-*- coding: utf-8 -*-import urllibimport rebaseurl = "http://music.baidu.com"url = "http://music.baidu.com/search/……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1632浏览 2494个赞
python处理大数字代码# check the numeric range of Python with huge factorials# factorial(69) still checks out accurately! Has 98 digits in it!# 171122452428141311372468338881272839092……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2455浏览 2933个赞
上线需要,将py的源码中注释删掉,然后编译成字节码。写此脚本主要是为了删除注释。当然如果上线不想放py源码,则在最后增加删除源码即可。#!/bin/env python# -*- coding:utf-8 -*-# -------------------------------# Filename: # Revision:# Date:……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1139浏览 452个赞
python提取页面内的url列表from bs4 import BeautifulSoupimport time,re,urllib2t=time.time()websiteurls={}def scanpage(url): websiteurl=url t=time.time() n=0 html=……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1726浏览 1156个赞
python 类继承演示范例# a simple example of a class inheritance# tested with Python24 vegaseat 10aug2005help('object') # testclass Class1(object): ""&……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1341浏览 1315个赞
python统计文本字符串里面单词出现的频率# word frequency in a text# tested with Python24 vegaseat 25aug2005# Chinese wisdom ...str1 = """Man who run in front of car, get t……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2941浏览 2294个赞
python正则搜索范例,通过search正则搜索字符串# encoding: UTF-8 import re # 将正则表达式编译成Pattern对象 pattern = re.compile(r'world') # 使用search()查找匹配的子串,不存在能匹配的子串时将返回None # 这个例子中使用mat……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2762浏览 793个赞
python 定时执行指定的函数# time a function using time.time() and the a @ function decorator# tested with Python24 vegaseat 21aug2005import timedef print_timing(func): def wr……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2199浏览 1721个赞
python常用列表,数组操作范例# experimenting with Python's list# tested with Python23 vegaseat 21feb2005# import module os for method listdir()import os# creat an empty li……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2061浏览 901个赞
wxpython开发的简单的gui计算器# wxCalc1 a simple GUI calculator using wxPython# created with the Boa Constructor which generates all the GUI components# all I had to do is add some code……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1490浏览 993个赞
从CVS库中迁出项目以后,在目录中含有CVS目录。通过python进行递归删除。由于PYTHON中貌似不能直接删除非空目录,所以先将CVS目录下的文件删除,再删除CVS目录。采用walk方法,递归遍历各目录。来源:http://blog.csdn.net/moxuansheng/article/details/6450687''……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2685浏览 1708个赞
python删除过期文件代码片段# remove all jpeg image files of an expired modification date = mtime# you could also use creation date (ctime) or last access date (atime)# os.stat(filename) ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2139浏览 1928个赞
python 对元组对库存进行排序# sort an inventory list by item count# Python24 (needed) modified by vegaseat 10may2005import operator# create an inventory list of tuples# each tuple c……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1668浏览 2110个赞
wxPython listbox 使用演示# load a listbox with names, select a name and display in title# experiments with wxPython by vegaseat 20mar2005# Python v2.4 and wxPython v2.5# If yo……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1444浏览 595个赞