对于CSV文件,可以使用Python内置的`csv`模块来读取和处理。`csv.reader`对象可以迭代地读取CSV文件的每一行数据。
```python
import csv
with open('example.csv', 'r') as file:
csv_reader = csv.reader(file)
for row in csv_reader:
print(row)
```
对于JSON格式的文件,可以使用`json`模块来读取和解析JSON数据。
```python
import json
with open('example.json) center no-repeat; background-size:cover;">