如何写Python以读取名为“ file1.txt”的文本文件中的前两行。写下“ file1.txt”的两行读取。到新文件“ file2.txt”
从名为“ file1.txt”的文本文件中读取前两行
Read the first two lines from a text file named "file1.txt" Write the two lines read from "file1.txt" to a new file "file2.txt"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
我敢肯定,那里的某个地方有一个整洁的解决方案,但这会起作用!
希望它能帮助您:)
I'm sure there is a neater solution out there somewhere but this will work!
Hope it helps you :)
编写一个python程序,以
“ file2.txt”
Write a Python program to
"file2.txt"
对于2行:
每次调用
r.readline()
,它将转到下一行。因此,如果您想阅读n
lines;使用:请注意,如果在第一行的末尾有一条新行(
\ n
),则.Readline() + r.readline()
仅是2个分开行For 2 lines:
Each time
r.readline()
is called, it goes to the next line. So if you wanted to readn
lines; use:Note that
.readline() + r.readline()
is only 2 seperate lines if there is a new line (\n
) at the end of the first line