Python 如何操作文件?

分类:Python | 作者:凹凸曼 | 发表于2011/03/01 1条评论

Python 如何操作文件?
分类:Python | 作者:凹凸曼 | 发表于2011/03/01 没有评论 编辑
#文件操作(类) #coding=gbk #author : 凹凸曼( lyc) #email : jar-c@163.com #time : 2010-9-30 try : import pickle import os except: print(‘相关模块未引入!’) class Bfile : path=’contacts.data’ #存放文件的路径 # 打开文件 # @param rw string # return bool def openf(self,rw): try : if os.path.isfile(Bfile.path)==False: f=open(Bfile.path,’w’) f=open(Bfile.path,rw) return f except: […]

Python2.x与 Python3.0的区别

分类:Python | 作者:凹凸曼 | 发表于2011/03/01 1条评论

由javaeye的姜太公翻译 原文:What’s New in Python 3.0 这篇文章主要介绍了相比于python2.6,python3.0的新特性。更详细的介绍请参见python3.0的文档。 Common Stumbling Blocks 本段简单的列出容易使人出错的变动。 * print语句被print()函数取代了,可以使用关键字参数来替代老的print特殊语法。例如: 1. Old: print “The answer is”, 2*2 2. New: print(”The answer is”, 2*2) 3. Old: print x, # 使用逗号结尾禁止换行 […]