I get invalid syntax at this line of code
sheets = ezsheets.Spreadsheet("id")
translation = sheets[1]
for x in range(2, 550):
browser.find_element_by_xpath(f"//a[contains(text(), {translation[A{x}}]"))
print(translation[f'B{x}'])
Here translation contains the ezsheets object and A is column, while i want x to be a row
I also tried ".format" this way :
browser.find_element_by_xpath("//a[contains(text(, {}]".format(translation[f'A{x}']))
question from:
https://stackoverflow.com/questions/66065449/how-to-add-two-format-strings 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…