从底部开始读取txt文件

read txt file start from the botton

我的 txt 文件被错误地读取,当我用我的代码发送密钥时,它只读取我的 txt 文件的最后一行,而不是读取第一行然后再读取下一行

f = open('list.txt', 'r', encoding='utf-8').readlines()
    for word in f:
        if word == "\n":
            continue
        elif not 0 < len(word) < 280:
            continue
        print(word)
    
     driver.find_element_by_xpath(message_paste).send_keys(word)
        print(word)

结果:代码发送了我的 txt 文件的最后一行

我无法复制这个。检查缩进。以下代码段对我有用。

f = open('list.txt', 'r', encoding='utf-8').readlines()
for word in f:
    if word == "\n":
        continue
    elif not 0 < len(word) < 280:
        continue
    print(word)