Python读取数据格式
时间: 2023-11-05 12:02:30 浏览: 43
Python 数据读取
Python可以读取多种数据格式,包括但不限于:
1. 文本文件:可以使用内置的open()函数打开并读取文本文件,例如:
```
with open('file.txt', 'r') as f:
data = f.read()
```
2. CSV文件:可以使用csv模块读取CSV文件,例如:
```
import csv
with open('file.csv', 'r') as f:
reader = csv.reader(f)
data = list(reader)
```
3. JSON文件:可以使用json模块读取JSON文件,例如:
```
import json
with open('file.json', 'r') as f:
data = json.load(f)
```
4. Excel文件:可以使用pandas模块读取Excel文件,例如:
```
import pandas as pd
data = pd.read_excel('file.xlsx')
```
5. SQLite数据库:可以使用sqlite3模块连接SQLite数据库并读取数据,例如:
```
import sqlite3
conn = sqlite3.connect('database.db')
cursor = conn.cursor()
cursor.execute('SELECT * FROM table')
data = cursor.fetchall()
conn.close()
```
阅读全文