Python教程

Python教程:包含了所有代写案例以及部分答案

  • #-*- coding:cp936 -*- """ os.walk() 函数声明:walk(top,topdown=True,onerror=None) 1>参数top表示需要遍历的目录树的路径 2>参数topdown的默认值是"True",表示首先返回目录树下的文件,然后在遍历目录树的子目录.Topdown的值为"False"时, 则表示先遍历目录树的子目录,返回子目录下的文件,最后返回根目录下的文件 3> … 继续阅读“python 删除空文件和空文件夹”

    :
  • 上线需要,将py的源码中注释删掉,然后编译成字节码。写此脚本主要是为了删除注释。当然如果上线不想放py源码,则在最后增加删除源码即可。 None 标签:python

    :
  • def main(): try: for line in readfile(‘lines.txt’): print(line.strip()) except IOError as e: print(‘could not open the file:’,e) except ValueError as e: print(‘bad filename:’,e) def readfile(filename): if filename.endswith(".txt"): fh = ope … 继续阅读“python 异常处理”

    :