我在 python 中打开和使用文本文件作为列表时遇到问题...我需要使用文本文件中的字符串值(每个 50 个单词)、三个文本文件...而且我需要使用来自每个文本文件都是为了每次都制造侮辱......(莎士比亚对那些知道的人的侮辱)
import random #Import my random
Column_picker = random.randint(0, 45) #Define my random between 0-50
with open("Column1.txt") as d:
insults1 = list(d)
with open("Column2.txt") as f:
insults2 = list(f)
with open("Column3.txt") as e:
insults3 = list(e)
print("Thou", insults1[], insults2[], insults3[])
这就是我到目前为止所拥有的,我感觉非常接近我只是无法从列表中获取正确的字符串..它要么获取整个列表,要么只是其中的一个字母....