[Python] Read from a File in Python

Posted Answer1215

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python] Read from a File in Python相关的知识,希望对你有一定的参考价值。

Using the open function, and the as and with keywords, we‘ll open up and read from a file. At the end of this lesson, you will be able to loop through the lines of text in a file, process the text in Python, and then print them to the terminal.

 

with open("input.txt") as text:
    for line in text:
        print("-------")
        print(line)

 

以上是关于[Python] Read from a File in Python的主要内容,如果未能解决你的问题,请参考以下文章

[Python] Read and plot data from csv file

笨办法学python 文本复制

read_csv报错Initializing from file failed

解决错误:pandas.read_csv() 报错 OSError: Initializing from file failed

SQL Script for read information from a csv file in FTP Server

python之pandas核心函数