python学习第七天——输入输出、file
一般的输入输出函数:input()和print() something = input("Enter text: ")print("you hava entered:",something) 文件I/O 注意:除了文本字符串,二进制也可以读和写 一个常用的实例: # 打开文件进行 'w'riting 写操作 f = open('poem.txt', 'w') # 将文本写入到文件 f.write(poem) # 关闭文件 f.close() # 如果没有指定文件打开方式 # 默认使用 'r'ead 读模式 f = open('poem.txt') while True: line = f.readline() # 零行意味着 EOF 文件结尾 if len(line) == 0: break # `line` 中已经自带换行了 # 因为它是从文件中读取出来的 print(line, end='') # 关闭文件 f.close() open()函数 python内置的函数,打开一个文件,创建一个file对象的主要参数 file = open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None) file:必须,文件路径的字符串值 mode:文件打开模式:只读,写入,追加等。该参数是非强制的