溫馨提示×

怎么用python讀取其他軟件數(shù)據(jù)

小億
122
2024-03-20 14:59:43
欄目: 編程語言

Python可以使用一些第三方庫來讀取其他軟件的數(shù)據(jù),比如:

  1. 使用pandas庫讀取Excel文件數(shù)據(jù):
import pandas as pd
data = pd.read_excel('file.xlsx')
print(data)
  1. 使用csv庫讀取CSV文件數(shù)據(jù):
import csv
with open('file.csv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
  1. 使用openpyxl庫讀取Excel文件數(shù)據(jù):
from openpyxl import load_workbook
wb = load_workbook('file.xlsx')
sheet = wb.active
for row in sheet.iter_rows(values_only=True):
    print(row)
  1. 使用sqlite3庫讀取SQLite數(shù)據(jù)庫數(shù)據(jù):
import sqlite3
conn = sqlite3.connect('database.db')
cursor = conn.cursor()
cursor.execute('SELECT * FROM table')
rows = cursor.fetchall()
for row in rows:
    print(row)
conn.close()

通過以上方法,你可以使用Python讀取其他軟件的數(shù)據(jù),然后對數(shù)據(jù)進(jìn)行分析、處理或展示。

0