我想知道这个代码为什么原文件出现空行也能继续复制下去的,有大佬吗while True: # 读取一行内容 text = file_read.readline() # 判断是否读取到内容 if not text: break file_write.write(text)