Python:使用字符串文字连接文件中的字符串

时间:2018-05-12 09:16:24

标签: python string concatenation readlines

我试图连接从文件中提取的字符串并使用字符串文字并收到错误。

示例:

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文件中提取的变量,但之后不会打印任何内容。

0 个答案:

没有答案