Hai . Unga video ellam parthuruken learn paniruken. Enaku oru doubt pandas matum use pani read and write data script panen read data read panuthu but status oru column vachiruken athula write agala enaku antha code matum solunga. Fullname and password read aguthu status la "passed" or "failed" write aganum status column. import pandas as pd df = pd. read_excel('data.xlsx') for i in df.index: entry = df.loc[i] name_input = browser.find_element_by_name('fullname") password_input = browser.find_element_by_name('password") _____
Hi Johnny, If your query is about how to add value ('passed 'or 'failed') to an excel column 'status', You can try using the following lines in your codes df.loc[i, "status"]="passed" df.to_excel("E:/data.xlsx",index=False);
@@Dr.NancyJane hi madam. I tried df['status'] = 'passed' . It is working. Excel sheet full name column la vlookup use paniruken write data passed or failed vantha next cell vera record manual ah varum but script run pana first row matum read panuthu next cell formula remove akiruthu.
Hai sis, df.loc[i, "status"] = 'passed' ethu work aguthu. Enaku extra one add pananum username and password same ah eruntha column results already oru value erukum athoda add pananum extra one value df.loc[i, "username"] == df.loc[i,"password"] = df.loc[i,"results"] + 1 results column value save aganum
mam plz make video on rnn,cnn plzz,not able to understand and python simulation for same .Thanks ,may god bless
Sure , will do..
Hai . Unga video ellam parthuruken learn paniruken. Enaku oru doubt pandas matum use pani read and write data script panen read data read panuthu but status oru column vachiruken athula write agala enaku antha code matum solunga. Fullname and password read aguthu status la "passed" or "failed" write aganum status column.
import pandas as pd
df = pd. read_excel('data.xlsx')
for i in df.index:
entry = df.loc[i]
name_input = browser.find_element_by_name('fullname")
password_input = browser.find_element_by_name('password")
_____
Hi Johnny, If your query is about how to add value ('passed 'or 'failed') to an excel column 'status', You can try using the following lines in your codes
df.loc[i, "status"]="passed"
df.to_excel("E:/data.xlsx",index=False);
@@Dr.NancyJane hi madam. I tried df['status'] = 'passed' . It is working. Excel sheet full name column la vlookup use paniruken write data passed or failed vantha next cell vera record manual ah varum but script run pana first row matum read panuthu next cell formula remove akiruthu.
Hai sis, df.loc[i, "status"] = 'passed' ethu work aguthu. Enaku extra one add pananum username and password same ah eruntha column results already oru value erukum athoda add pananum extra one value
df.loc[i, "username"] == df.loc[i,"password"] = df.loc[i,"results"] + 1
results column value save aganum