参考 http://www.cnblogs.com/forwhy/archive/2012/10/10/2717290.html
3–1. 标识符。为什么Python 中不需要变量名和变量类型声明?
变量在第一次被赋值时自动声明
3–2. 标识符。为什么Python 中不需要声明函数类型?
因为python的type checking是在运行时发生的,不在编译时发生,所以在代码里写变量的类型是多余的。
3–3. 标识符。为什么应当避免在变量名的开始和和结尾使用双下划线?
python用双下划线作为变量的前缀和后缀指定特殊变量。
3–4. 语句。在Python 中一行可以书写多个语句吗?
要想在同一行书写多个语句,可以用分号分隔语句,但注意python支持这种方法但不建议这样做
3–5. 语句。在Python 中可以将一个语句分成多行书写吗?
可以的,用‘/’
3–6. 变量赋值
(a)赋值语句 x, y, z = 1, 2, 3 会在 x、y、z 中分别赋什么值?
(b)执行z, x, y = y, z, x 后,x、y、z 中分别含有什么值? (a)x=1,y=2,z=3
(b)x=3,y=1,z=2
3–7. 标识符。下面哪些是Python 合法的标识符?如果不是,请说明理由!在合法的标
识符中,哪些是关键字? 40XL不合法,$aving$不合法,print是关键字,this是关键字,self是关键字,,,,忽略
下面的问题涉及了 makeTextFile.py 和readTextFile.py 脚本。
3–8. Python 代码。将脚本拷贝到您的文件系统中,然后修改它。可以添加注释,修改
提示符(‘>’太单调了)等等,修改这些代码,使它看上去更舒服。 3–9. 移植。 如果你在不同类型的计算机系统中分别安装有Python, 检查一下,
os.linesep 的值是否有不同。 记下操作系统的类型以及 linesep 的值。 对于Unix平台,linesep是'\n',对于DOS或者是win32平台,linesep是'\r\n'
3–10. 异常。使用类似readTextFile.py 中异常处理的方法取代 readTextFile.py
makeTextFile.py 中对os.path.exists() 的调用。反过来, 用os.path.exists() 取代
readTextFile.py 中的异常处理方法。 makeTextFile.py:
#!/usr/bin/env python# encoding: utf-8'''makeTextFile.py '''import os linesep = os.linesepfname = raw_input("Please input filename: ")try: fobj = open(fname, 'r')except IOError,e: fobj = open(fname, 'w') Done = False while not Done: entry = raw_input("--->: ") if entry != ".": fobj.write(entry) fobj.write(linesep) else: Done = True break fobj.close()else: print "ERROR:%s already exists" %(fname) fobj.close()
readTextFile.py:
#!/usr/bin/env python# encoding: utf-8import os fname = raw_input("please input the filename that you would like to open:")if os.path.exists(fname): fobj = open(fname, 'r') for line in fobj: print line, fobj.close()else: print "Error: File not exits"
3–11.字符串格式化 不再抑制readTextFile.py 中 print 语句生成的 NEWLINE 字符,修改你的
代码, 在显示一行之前删除每行末尾的空白。这样, 你就可以移除 print 语句末尾的逗号了。
提示: 使用字符串对象的 strip()方法 #!/usr/bin/env python# encoding: utf-8import os fname = raw_input("please input the filename that you would like to open:")if os.path.exists(fname): fobj = open(fname, 'r') for line in fobj: print line.strip() fobj.close()else: print "Error: File not exits"
3–12. 合并源文件。将两段程序合并成一个,给它起一个你喜欢的名字,比方
readNwriteTextFiles.py。让用户自己选择是创建还是显示一个文本文件。 #!/usr/bin/env python# coding: utf-8import osdef readByFilename(): fname = raw_input("Please inuput the filename that you wanted to read: ") if os.path.exists(fname): with open(fname, 'r') as fobj: for line in fobj: print line.strip() else: print "Error: File not exists"def writeByFiilename(): linesep = os.linesep fname = raw_input("input filename to write: ") if os.path.exists(fname): print "Error: File exits" else: with open(fname, 'w') as f: while True: entry = raw_input('>') if entry == '.': break else: entry += linesep f.write(entry)def showMenu(): prompt = ''' (W)rite something to a file (R)ead from the file (Q)uit ''' done = False while not done: chosen = False while not chosen: try: choice = raw_input(prompt).strip()[0].lower() except EOFError, KeyboardInterrupt: choice = 'q' print '\nYou picked:[%s]' % choice if choice not in 'wrq': print 'invalid option, try agian' elif choice == 'r': readByFilename() chosen = True elif choice == 'w': writeByFiilename() chosen = True else: chosen = True done = Trueif __name__ == '__main__': showMenu()
3–13. 添加新功能。将你上一个问题改造好的 readNwriteTextFiles.py 增加一个新功
能:允许用户编辑一个已经存在的文本文件。 你可以使用任何方式,无论是一次编辑一行,还
是一次编辑所有文本。需要提醒一下的是, 一次编辑全部文本有一定难度,你可能需要借助 GUI
工具包或一个基于屏幕文本编辑的模块比如 curses 模块。要允许用户保存他的修改(保存到
文件)或取消他的修改(不改变原始文件),并且要确保原始文件的安全性(不论程序是否正
常关闭)。 此题由于对GUI的text组件不熟悉而暂停编写代码,等到学到GUI那章再回头来编写代码。