例如。正确的样本 -
f.write("\t" +connection_name+ "\t =" + qs.connection_name + "\n")
我想做的事情 -
f.write("\t" +current+ "\t=" +qs.current+ "\n")
// current = 'connection_name'
如何以这种方式连接 - qs.current
以便打印为qs。connection_name
的值
答案 0 :(得分:2)
您可以使用getattr
getattr(qs, current)
所以在你的代码的上下文中
f.write("\t" + current + "\t=" + getattr(qs, current) + "\n")