我想从文本文件中打印一行以及变量

时间:2014-07-16 12:28:58

标签: python-3.x text-files

我想打印一个文本文件中的一行以及我在同一行创建的变量。我的代码看起来像这样。

print (lines[a] + answer)

lines [a]是我创建的文本文件中的随机行,answer是我在运行此代码时创建的变量,它看起来像

"What is your favorite color,
red"

我希望它像这样打印出来

"What is your favorite color, red"

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

简单:

print("%s %s" % (lines[a].rstrip(), answer))

查看文档:{​​{3}}甚至str.strip([chars])