• 2022-06-12
    以下关于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等信息