请允许任何人帮助我这样做吗?
我有两个主要列A和B.列A包含产品代码,列B包含其价格。现在我在C列中有一些产品代码。我需要它们的价格并保持C列顺序。
import pandas as pd
import numpy as np
#Read the input .csv file
df = pd.read_csv('input.csv',header=None)
#Transpose the columns to rows
df_row = df.transpose()
#Output the dataframe to .txt file
np.savetxt('out.txt',df_row.values,delimiter=' ',fmt='%s')