标签: python pandas dataframe iteration
我在一种栏中以多种货币表示费用。我想创建一个新列,将所有费用转换为美元。
这就是我所做的:
for i in range(len(df)) : if(df[i]['Currency'] == 'Botswana Pula(P)'): df[i]['new cost'] = df[i]['Average Cost for two'] * 0.095 ...
以此类推,以其他货币表示。