基本信息
文件名称:《Python编程入门与实践(微视频版)》代码 例5-3 调用readline( )方法.doc
文件大小:33.5 KB
总页数:2 页
更新时间:2025-07-12
总字数:约小于1千字
文档摘要

例5-3调用readline()方法

例5-3调用readline()方法

本例将调用readline()方法读取hello.txt文件的内容。

helloFile=open(D:\\python\\hello.txt)

fileContent=

whileTrue:

line=helloFile.readline()

ifline==:#或者可以使用ifnotline

break

fileContent+=line

helloFile.close(