Python 中读取数据的几种方法
Python 中读取数据有以下几种主要方法:
1. 从文件读取
open()
函数打开文件。read()
方法读取整个文件内容。readline()
方法逐行读取文件。readlines()
方法将文件内容读入列表。示例:
<code class="python">with open('myfile.txt', 'r') as f: data = f.read()</code>
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>
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>
4. 从 JSON 文件读取
json
模块中的 load()
函数从 JSON 文件加载数据。示例:
<code class="python">import json with open('mydata.json', 'r') as f: data = json.load(f)</code>
5. 从数据库读取
psycopg2
(PostgreSQL)或 pymongo
(MongoDB),建立数据库连接。示例:
<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>
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!