-
日期:2021-12-08 14:50:46
点击:59
内容简介:复制代码 代码如下: import os import codecs filenames=os.listdir(os.getcwd()) out=file("name.txt","w") for filename in filenames: out.write(filename.decode("gb2312").encode("utf-8")) out.close() 将执行文件的当前目录及文件名写入到name.txt文...
-
日期:2021-12-08 14:50:45
点击:59
内容简介:字符串分割 复制代码 代码如下: str="a|and|hello|||ab" alist = str.split('|') print alist 结果 复制代码 代码如下: str="a hello{这里换成5个空格}world{这里换成3个空格}" alist=str.split(' ') print alist 统计英文单词的个数的python代码 复制代码...
-
日期:2021-12-08 14:50:44
点击:59
内容简介:本文实例讲述了python处理大数字的方法。分享给大家供大家参考。具体实现方法如下: def getFactorial(n): """returns the factorial of n""" if n == 0: return 1 else: k = n * getFactorial(n-1) return kfor k in range(1, 70): print "factorial of", k...
-
日期:2021-12-08 14:50:43
点击:59
内容简介:本文实例讲述了python类继承用法。分享给大家供大家参考。具体如下: help('object') # testclass Class1(object): """ Class1 inherits the most basic container class object (just a place holder) this is the newer class writing convention, adding...
-
日期:2021-12-08 14:50:42
点击:59
内容简介:本文实例讲述了python zip和unzip数据的方法。分享给大家供大家参考。具体实现方法如下: # zipping and unzipping a string using the zlib module# a very large string could be zipped and saved to a file speeding up file writing time # and later r...
-
日期:2021-12-08 14:50:42
点击:59
内容简介:本文实例讲述了python显示生日是星期几的方法。分享给大家供大家参考。具体实现方法如下: # find the day of the week of a given date# Python will trap impossible dates like (1900, 2, 29)# tested with Python24 vegaseat 01aug2005from datetime imp...
-
日期:2021-12-08 14:50:41
点击:59
内容简介:本文实例讲述了Python pickle模块用法。分享给大家供大家参考。具体分析如下: pickle提供了一个简单的持久化功能。可以将对象以文件的形式存放在磁盘上。 pickle.dump(obj, file[, protocol]) 序列化对象,并将结果数据流写入到文件对象中。参数protocol是...
-
日期:2021-12-08 14:50:40
点击:59
内容简介:本文实例讲述了Python创建模块及模块导入的方法。分享给大家供大家参考。具体分析如下: python学习手册中写道: 定义模块,只要使用文本编辑器,把一些python代码输入到文本中,然后以.py为后缀名进行保存,任何此类文件都会被认为是python模块。 比如说,...
-
日期:2021-12-08 14:50:39
点击:59
内容简介:本文实例讲述了Django imgareaselect手动剪切头像的方法。分享给大家供大家参考。具体如下: index.html: !DOCTYPE html html head meta charset="UTF-8" title上传图片/title /head body form action="." method="post" enctype="multipart/form-data"{% cs...
-
日期:2021-12-08 14:50:39
点击:59
内容简介:本文实例讲述了Python类的用法。分享给大家供大家参考。具体如下: 先看一段代码: #!/usr/bin/env pythonclass Test: def __init__(self,msg="hello"): self.wel=msg print "init" def go(self,name,do): print self.wel+"go! "+name+" "+dod=Test("hi,")d....