我需要阅读如下行:
"hello %" % name
从文件中然后在代码中使用它。例如:
name = "Joe"
row = open("hello.txt", "r").readline().strip()
print row
该程序运行的理想结果应该是:
hello Joe
而不是
hello %" % name
有没有办法完成它?
答案 0 :(得分:0)
用变量替换子字符串。
name = "Joe"
row = open("hello.txt", "r").readline().strip()
row = row.replace('%" % name', name)
print row
输出:
hello Joe