在Python中读取Excel数据通常使用的是pandas库。可以通过以下步骤来读取Excel数据:
pip install pandas
import pandas as pd
df = pd.read_excel('path_to_excel_file.xlsx')
df
head()
print(df.head())
通过以上步骤,你就可以在Python中读取Excel数据了。