基本信息
文件名称:《Python编程入门与实践(微视频版)》代码 例5-2 参数一次读取3个字符.doc
文件大小:33.5 KB
总页数:2 页
更新时间:2025-07-12
总字数:约小于1千字
文档摘要
print
例5-2参数一次读取3个字符
例5-2参数一次读取3个字符
本例代码的功能是逐段读取一个文本文件的内容,并将其拼接后输出。
helloFile=open(D:\\python\\hello.txt)
fileContent=
whileTrue:
fragment=helloFile.read(3)
iffragment==:#或者可以使用ifnotfragment
break
fileContent+=fragment
helloFile.close()