import pandas as pd
import pyperclip
xls_path = r"D:\code\03_liaohao\short_combine\EPDV-B_combine.xls"
df = pd.read_excel(xls_path, usecols='A')
df = df.to_string(index=False)
print(df)
pyperclip.copy(df)
参考
https://stackoverflow.com/questions/24644656/how-to-print-pandas-dataframe-without-index