python中的基本IO操作: 1) 键盘输入函数:raw_input(string),不作处理的显示,与返回. input(string),可以接受一个python表达式作为返回,python内部得到计算结果 2) 文件句柄(file)对象: file对象的创建必须通过open()函数来得到, file object = open(file_name, access_mode, buffering) file_name, 需要指向的文件的路径, access_mode,r,w,a (加号,表示…