gpt4 book ai didi

python - 如何修复此 rstrip 属性错误?

转载 作者:太空宇宙 更新时间:2023-11-03 17:57:57 25 4
gpt4 key购买 nike

我正在使用 .rstrip 从导入的文本文件中的单词中删除\n,但它会出现属性错误?

属性错误:“列表”对象没有属性“rstrip”

import random
import os
import time

text_file = open ("ten_words.txt", "r")
lines = text_file.readlines()
missing = random.choice(lines)
random.shuffle(lines)


print ("First Grid")
print ("\n", lines.rstrip[0],"|", lines.rstrip[1], "|", lines.rstrip[2])
print ("\n", lines.rstrip[3],"|", lines.rstrip[4], "|", lines.rstrip[5])
print ("\n", lines.rstrip[6],"|", lines.rstrip[7], "|", lines.rstrip[8])

最佳答案

您这里的顺序有误,您想要做的是:

lines[0].rstrip('\n')

关于python - 如何修复此 rstrip 属性错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28220975/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com