我有一个文本文件,其中有两列可用,分别为“ empid”和“ name”。在这里,我想用1(one)的增量值来增加空值,这意味着10次并且name列将重复相同。这是文本文件和python文件
demo.txt文件
empid name
10 bhuvi
read_file.py文件
fil = open('c:/users/$$$$$$/desktop/demo.txt','r')
fil2 = fil.read()
for i in fil2:
print(fil2[i],end='')
fil.close()
答案 0 :(得分:0)
我不明白这个问题,您是否要像这样向demo.txt添加新行?
demo.txt
from selenium.common.exceptions import NoSuchElementException
row_start = 2 x = len(driver.find_elements_by_xpath('.//table[1]/tbody/tr'))
for c in range(row_start, x + 1):
try:
table_row = driver.find_element_by_xpath('.//table[1]/tbody/tr[%d]/td[3]' % c)
table_row.click()
except NoSuchElementException:
continue
如果是,那么
empid, name
10, bhuvi
11, bhuvi
.., .....
20, bhuvi