Python
iteye_15269
这个作者很懒,什么都没留下…
展开
-
Python模块学习——使用 optparse 处理命令行参数
Python 有两个内建的模块用于处理命令行参数:一个是 getopt,《Deep in python》一书中也有提到,只能简单处理命令行参数;另一个是 optparse,它功能强大,而且易于使用,可以方便地生成标准的、符合Unix/Posix 规范的命令行说明。示例下面是一个使用 optparse 的简单示例:from optparse im...原创 2010-10-29 15:16:49 · 370 阅读 · 0 评论 -
python2.6+py2exe打包文件问题
用py2exe-0.6.9.win32-py2.6.exe 编译打包exe.移植到其他主机上出现: “由于应用程序配置不正确,应用程序未能启动。重新安装应用程序可能会纠正这个问题。” 后来找到了这篇文章尽量别使用 Py2exe for Python 2.6。 可是放弃python2.6装回2.5又不甘心。所以还得想其他办法。 一般出现这种提示是因为目标机器上缺少必要的运行时库造成的...原创 2010-11-10 13:08:12 · 150 阅读 · 0 评论 -
下载slapos上的cfg文件
# coding utf-8import urllibimport reimport os"""下载slapos上的.cfg文件"""def getUrlFromCfg(url,dir): u = urllib.urlopen(url) buffer = u.read() #判断文件是否存在,否就写新文件 if not ...原创 2011-08-17 13:46:32 · 108 阅读 · 0 评论 -
Python 字符串操作(截取/替换/查找/分割)
Python 截取字符串使用 变量[头下标:尾下标],就可以截取相应的字符串,其中下标是从0开始算起,可以是正数或负数,下标可以为空表示取到头或尾。# 例1:字符串截取str = '12345678'print str[0:1]>> 1 # 输出str位置0开始到位置1以前的字符print str[1:6] >> 23456 ...原创 2011-08-17 13:47:57 · 1083 阅读 · 0 评论 -
Python实现md5
''' md5sum in Pythonex: import hashlib m = hashlib.md5('stunnel-4.48.tar.gz') m.digest() print m.hexdigest()'''try: from hashlib import md5 #Python2.5 o...原创 2011-11-29 09:22:41 · 195 阅读 · 0 评论 -
Python内置函数
The Python interpreter has a number of functions built into it that are always available. They are listed here in alphabetical order.abs()divmod()input()open()static...原创 2012-04-19 13:31:25 · 93 阅读 · 0 评论 -
Python 字符串格式化输出(format/printf)
Python 字符串格式化使用 "字符 %格式1 %格式2 字符"%(变量1,变量2),%格式表示接受变量的类型。简单的使用例子如下:# 例:字符串格式化Name = '17jo' print 'www.%s.com'%Name >> www.17jo.comName = '17jo'Zone = 'com'print 'www.%s.%...原创 2012-05-26 08:50:38 · 341 阅读 · 0 评论 -
Python日期和字符串的互转
用的分别是time和datetime函数 import time,datetime# date to strprint time.strftime("%Y-%m-%d %X", time.localtime())#str to datet = time.strptime("2009 - 08 - 08", "%Y - %m - %d")y,m,d = t[...原创 2012-05-26 08:53:13 · 99 阅读 · 0 评论 -
Python - 函数中**参数的用法
Python tips: 什么是*args和**kwargs?先来看个例子:def foo(*args, **kwargs): print 'args = ', args print 'kwargs = ', kwargs print '---------------------------------------'if __name__ =...原创 2012-10-03 23:56:41 · 170 阅读 · 0 评论