filei0 一枚目
インポートされるファイルです。
file01 二枚目(下記二枚とも同じファイルの内容です)
画像の説明をここに入力
画像の説明をここに入力

filei0 = pd.read_csv('sample.csv', index_col=0)
file01 = pd.read_csv('faostat_sample.csv')

for i in range(len(filei0)):

    irow = filei0.iloc[i]
    icountry = irow["Area"]
    iitem = irow["Item"]
    ielement = irow["Element"]
    ivalue = irow["Value"]
    iyear = irow["Year Code"]
    if [(file01["countries"] == icountry) & (file01["item"] == iitem) & (file01["element"] == ielement)]:
    [iyear] = ivalue
    file01.loc[i]
file01.to_csv('sample_full.csv')

国名,element,item,yearが同じものをfileo1(二枚目の画像)の2001~の年に一枚目の画像のvalue値を挿入したいのですが、コードをどうつけ足せばいいかわかりません

行を選択したあとの書き出し方?がわからないのですがどのようなコードを書けばよいのでしょうか