• 大小: 5.51M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: python  教程  t  

资源简介


资源截图

代码片段和文件信息

#!/usr/bin/env python

‘makeTextFile.py -- create text file‘

import os

# get filename
while True:
    fname = raw_input(‘Enter file name: ‘)
    if os.path.exists(fname):
        print“*** ERROR: ‘%s‘ already exists“ % fname
    else:
        break

# get file content (text) lines
all = []
print “\nEnter lines (‘.‘ by itself to quit).\n“

# loop until user terminates input
while True:
    entry = raw_input(‘> ‘)
    if entry == ‘.‘:
        break
    else:
        all.append(entry)

# write lines to file with NEWLINE line terminator
fobj = open(fname ‘w‘)
fobj.write(‘\n‘.join(all))
fobj.close()
print ‘DONE!‘

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件     6155095  2016-12-26 23:38  Python核心编程.pdf
     目录           0  2016-12-26 23:42  python核心编程(第二版)源代码\
     目录           0  2009-03-24 16:28  python核心编程(第二版)源代码\python-src\
     文件       54312  2009-03-24 16:25  python核心编程(第二版)源代码\python-src\all.tar
     目录           0  2009-03-24 16:27  python核心编程(第二版)源代码\python-src\ch03\
     文件         663  2006-10-12 13:03  python核心编程(第二版)源代码\python-src\ch03\makeTextFile.diff
     文件         619  2006-10-12 12:49  python核心编程(第二版)源代码\python-src\ch03\makeTextFile.py
     文件         610  2006-10-12 13:00  python核心编程(第二版)源代码\python-src\ch03\makeTextFile0.py
     文件         652  2006-09-19 14:32  python核心编程(第二版)源代码\python-src\ch03\makeTextFile1.py
     文件         365  2006-03-28 18:06  python核心编程(第二版)源代码\python-src\ch03\readTextFile.py
     目录           0  2009-03-24 16:27  python核心编程(第二版)源代码\python-src\ch04\
     文件         354  2006-09-19 14:37  python核心编程(第二版)源代码\python-src\ch04\typechk.py
     目录           0  2009-03-24 16:27  python核心编程(第二版)源代码\python-src\ch06\
     目录           0  2009-03-24 16:27  python核心编程(第二版)源代码\python-src\ch06\alt\
     文件        1358  2000-10-11 07:17  python核心编程(第二版)源代码\python-src\ch06\alt\idcheck.py
     文件         732  2006-10-27 16:00  python核心编程(第二版)源代码\python-src\ch06\alt\idcheck2.py
     文件         442  2006-03-28 18:06  python核心编程(第二版)源代码\python-src\ch06\alt\insertVsColonZero.py
     文件         243  2006-03-28 18:06  python核心编程(第二版)源代码\python-src\ch06\alt\NoneIndex.py
     文件        1993  2000-09-21 01:00  python核心编程(第二版)源代码\python-src\ch06\alt\queue.py
     文件        1149  2006-03-28 18:06  python核心编程(第二版)源代码\python-src\ch06\alt\reversedSorted.py
     文件        1941  2000-09-21 01:00  python核心编程(第二版)源代码\python-src\ch06\alt\stack.py
     文件         240  2006-03-28 18:06  python核心编程(第二版)源代码\python-src\ch06\alt\stringTemplates.py
     文件         479  2000-09-21 00:57  python核心编程(第二版)源代码\python-src\ch06\buggy.py
     文件         586  2000-10-11 07:16  python核心编程(第二版)源代码\python-src\ch06\idcheck.py
     文件         956  2000-10-11 05:54  python核心编程(第二版)源代码\python-src\ch06\queue.py
     文件         958  2000-10-11 05:52  python核心编程(第二版)源代码\python-src\ch06\stack.py
     文件         399  2006-09-19 14:45  python核心编程(第二版)源代码\python-src\ch06\uniFile.py
     目录           0  2009-03-24 16:27  python核心编程(第二版)源代码\python-src\ch07\
     目录           0  2009-03-24 16:27  python核心编程(第二版)源代码\python-src\ch07\alt\
     文件        2658  2000-09-21 01:02  python核心编程(第二版)源代码\python-src\ch07\alt\userpw.py
     文件        1192  2000-09-21 01:03  python核心编程(第二版)源代码\python-src\ch07\userpw.py
............此处省略168个文件信息

评论

共有 条评论