怎么在python中导入数据
时间: 2024-11-30 18:23:12 浏览: 3
在Python中导入数据通常涉及读取各种文件格式的数据。以下是几种常见的数据导入方法:
1. **CSV(逗号分隔值)**:使用`csv`模块:
```python
import csv
with open('data.csv', 'r') as file:
reader = csv.reader(file)
data = [row for row in reader]
```
2. **Excel(`.xls` 或 `.xlsx`)**:使用`pandas`库中的`read_excel`函数:
```python
import pandas as pd
data = pd.read_excel('file.xlsx')
```
3. **JSON**:使用`json`模块:
```python
import json
with open('data.json', 'r') as file:
data = json.load(file)
```
4. **文本文件**(例如TXT):可以直接逐行读取:
```python
with open('text.txt', 'r') as file:
data = file.readlines()
```
5. **数据库(如SQLite、MySQL等)**:可以使用`sqlite3`, `psycopg2`等库连接数据库并查询数据。
阅读全文