How to read data in python

下次还敢
Release: 2024-04-02 18:18:20
Original
1122 people have browsed it

Python 中读取数据的几种方法

Python 中读取数据有以下几种主要方法:

1. 从文件读取

  • 使用内置的 open() 函数打开文件。
  • 使用 read() 方法读取整个文件内容。
  • 使用 readline() 方法逐行读取文件。
  • 使用 readlines() 方法将文件内容读入列表。

示例:

<code class="python">with open('myfile.txt', 'r') as f:
    data = f.read()</code>
Copy after login

2. 从文本流读取

  • 使用 StringIO 模块创建文本流。
  • 使用 write() 方法将数据写入流中。
  • 使用 seek() 方法重置流指针。
  • 使用 read() 方法读取流中的数据。

示例:

<code class="python">from io import StringIO

stream = StringIO()
stream.write('Hello world!')
stream.seek(0)
data = stream.read()</code>
Copy after login

3. 从 CSV 文件读取

  • 使用 csv 模块中的 reader() 函数创建一个 CSV 读取器。
  • 使用 next() 方法逐行读取数据。

示例:

<code class="python">import csv

with open('mydata.csv', 'r') as f:
    reader = csv.reader(f)
    for row in reader:
        print(row)</code>
Copy after login

4. 从 JSON 文件读取

  • 使用 json 模块中的 load() 函数从 JSON 文件加载数据。

示例:

<code class="python">import json

with open('mydata.json', 'r') as f:
    data = json.load(f)</code>
Copy after login

5. 从数据库读取

  • 使用数据库库,如 psycopg2(PostgreSQL)或 pymongo(MongoDB),建立数据库连接。
  • 执行 SQL 查询或数据库操作来检索数据。

示例:

<code class="python">import psycopg2

conn = psycopg2.connect("host=localhost dbname=mydb user=postgres password=mypassword")
cur = conn.cursor()
cur.execute("SELECT name FROM users")
data = cur.fetchall()</code>
Copy after login

The above is the detailed content of How to read data in python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template