进口熊猫作为pd
url=“http://hkureis.versitech.hku.hk/data.php”
表=pd.read_html(url)[0]
打印(table)table.to_Excel(“reis.xlsx”)
我怎样才能摆脱第一行和第一列。 用Python中的下一行和下一列替换它们?
输出
尝试使用to_string(index=false)方法:
print(table.to_string(index=False))
结果: