在 shell 脚本中,如果我们有类似的东西:
field1 = 22
qry="delete from table_name where id = $field1
echo $qry >> /tmp/query.ksh
在我们的文件中
delete from table_name where id = 22
我想在 python 中实现同样的目标
我应该如何在我正在做的python中实现这一点
fo = open("file","a")
fo.write(qry)
但这不起作用。
请提出正确的方法。