I have tried looping into a column, there are three different values which should be filled in the columns but only one value is getting filled.
for i in df_j['token']:
if i in ["AK","BK","BW","AC","AK","AR","BA"]:
df_j['check']='1_Check'
elif i in ["AW","AA"]:
df_j['check']='STP'
elif i in ["MD","MW","MK","NW","NK","ND","PW","PK"]:
df_j['check']='Normal'
Above is the code and value which is coming is "normal' in all rows.