使用函数open()打开文件时,如果没有指定编码方式(即encoding),则该参数默认值总为'utf-8'
举一反三
- 使用函数open()打开文件时,如果没有在参数中指定模式,则默认的模式为 'a+'
- 使用open打开文件时,mode参数的默认值是“w”。
- 使用内置函数open()打开文本文件时,默认的编码格式为?
- 以下关于Python3中文件读取的说法,错误的是 A: f = open('requirements.txt')若open函数中没有书写mode参数,则默认为mode = 'r' B: f = open('requirements.txt')若open函数中没有书写encoding参数,则默认为encoding='utf-8' C: f = open('requirements.txt') print(f.read()) 此时会输出文件中的所有行 D: f = open('requirements.txt') print(f) 此时会输出一个文件对象,包括name、mode、encoding等信息
- Python内置函数open()的参数_______________用来指定打开文本文件时所使用的编码格式。