打开并打印文件的内容



我正在尝试编写一个程序,该程序将打开一个文件并打印其内容。我想我在定义它时遇到了一些麻烦?如果它没有告诉我";路径";如果没有定义,那么它告诉我";new_dir";未定义。

这是代码:

import pathlib
def prog_info():
print("This program will open a file, read and print its contents.")
print("-----------------------------------------------------------")

prog_info()
file_path = new_dir / "numbers.txt"
file_path.parent.mkdir()
file_path.touch()
with path.open("numbers.txt", mode="r", encoding="utf-8") as file:
for line in file:
print(line.strip())

该文件将有三个将被打印的数字:

22
14
-99
with open("filename or location", 'r') as my_file:
for line in my_file:
print(line)

我希望这对你有所帮助。您不需要模式,也不需要导入。您只需要提供代码

相关内容

  • 没有找到相关文章

最新更新