Python pexpect - python 2.6 - 无法打印变量和>在一条线上

时间:2017-03-30 08:37:28

标签: python variables pexpect

我正在尝试连接字符串+变量+字符串 使用Python

从文件中获取变量
spring.jackson.serialization.write-dates-as-timestamps: false

它打印c:/ xyz > 我希望输出为" c:/ xyz>"。当我在交互模式下尝试时,它打印得很好。

1 个答案:

答案 0 :(得分:0)

由于奇怪的格式化,很难理解这个问题,但无论如何都要尝试使用format方法:

 d = "c:/{}>".format(xyz.strip('\n'))