我想创建一个字符串,我想同时替换全局变量和局部变量。下面显示的代码给了我一个错误。(键错误:"表"(
TABLE = my_table
def get_data():
data_size = 10
print "get %(data_size)s rows from the table %(TABLE)s" %locals() %globals()
我希望代码打印以下内容:
get 10 rows from the table my_table
有谁知道如何实现这一目标?提前感谢!
如果要完全像现在一样使用格式字符串,则需要将确切的映射指定为字典,如下所示:
mapping = {'data_size' : locals()['data_size'], 'TABLE' : globals()['TABLE']}
或者,更简单地说,
mapping = {'data_size' : data_size, 'TABLE' : TABLE}
现在,将映射传递到字符串中,如下所示:
print "get %(data_size)s rows from the table %(TABLE)s" % mapping
这会给你get 10 rows from the table my_table
.
您收到TypeError
是因为%(...)s
期望以传递给字符串的 args 格式指定相同的键 : 值映射。
你需要这样打印:
TABLE = "my_table"
def get_data():
data_size = 10
print "get %s rows from the table %s"%(data_size, TABLE)
输出:
从表中获取 10 行my_table