2021
05-15
05-15
python基础之文件操作和异常处理
一、文件和异常1.1从文件中读取数据读取整个文件读取文件先要创建一个文件,在程序的同一目录下。greet.txt“HelloWorld!HelloWorld!HelloWorld!HelloWorld!”withopen('greet.txt')asfile_object:contents=file_object.read()print(contents)如果txt文件中有中文,输出出现乱码时,可以withopen(‘greet.txt',encoding=‘UTF-8')asfile_object:。1.2open()要以任何方式使用文件时,都必须先打开文件,才能访问。函...
继续阅读 >