如何放置条件并在Excel中存储数据

时间:2019-06-22 19:37:45

标签: excel python-3.x

我只想在不同的Excel中使用正确的数据。 如果条件或代码中的任何其他条件,我该如何申请

在代码中,true和false两种数据都保存在excel中。但我只需要以上Excel中的TRUE数据。 请帮助我解决问题。

    data["bonus"] ='FALSE'
    data.loc[:, 'LONGITUDE']= data['LONGITUDE'].astype(str)
    data.loc[:, 'LATITUDE']= data['LATITUDE'].astype(str)
    data.loc[(data["ACTION"] == "A") & (data["LONGITUDE"] != 'nan') & 
    (data["LATITUDE"] != 'nan'), ["bonus"]] = 'TRUE'
    data.to_csv("C:/Users/patesari/Desktop/python work/practice2.csv")

in the image, bonus column shows the value, and from that I want only the rows which are TRUE in another EXCEl

0 个答案:

没有答案