我正在使用pandas导入包含股票数据的csv文件。好像每次保存文件时,Pandas都会在文件中添加一行,其中包含该行的ID。
import yfinance as yf
import pandas as pd
#Open File
df = pd.read_csv('balance.csv')
#Calculating Current Value
df['Value'] = df['BuyPrice'] * df['BuyAmount']
#Adding Most Recent Price to CSV File
ticker_stock = yf.Ticker('AAPL')
data = ticker_stock.history()
df['Price'] = (data.tail(1)['Close'].iloc[0])
print(df)
#Save File
df.to_csv('balance.csv')
如果我运行该程序3次,我将在其中包含ID的3行。有没有一种方法可以阻止熊猫在每次保存时向我显示行ID并将其添加到文件中? 似乎ID也阻止了我使用表中的数据进行统计,因为每次我从表中提取数据时,ID都包含ID。