我试图连接从文件中提取的字符串并使用字符串文字并收到错误。
示例:
file.txt的:
string1
string2
string3
program.py:
import random
f = open("file.txt", "r")
alist = f.readlines()
f.close()
anotherlist = ['word1', 'word2']
astring = random.choice(alist) + " " + random.choice(anotherlist)
print(astring)
它打印从.txt文件中提取的变量,但之后不会打印任何内容。