创建一个名为mypython.txt文件,文件中包含三行字符串,分别为: wh

题库2022-08-02  44

问题 创建一个名为mypython.txt文件,文件中包含三行字符串,分别为:where there is a will,> there is a way.> 有志者事竟成。以只读方式读取打开该文件,并分别用三种方式读取全部内容,输出到屏幕上。

选项

答案

解析 file_object = open('mypython.txt','r')print(file_object.read())file_object.close() file_object = open('mypython.txt','r')print(file_object.readline())print(file_object.readline())print(file_object.readline())file_object.close() file_object = open('mypython.txt','r')print(file_object.readlines())file_object.close()
转载请注明原文地址:https://tihaiku.com/congyezige/2425245.html

最新回复(0)