我有一个多行字符串(大mysql查询),我想用字典(数据)格式化它:
query = """
INSERT LOW_PRIORITY INTO goods(id, type, volume, strength,
country, price, description, year, image, url, class, color,
grape, vintage, dryness, shop, added)
VALUES (
'%(id)s',
'%(type)s',
'%(volume)s',
%(strength)d,
'%(country)s',
%(price)d,
'%(description)s',
'%(year)s',
'%(image)s',
'%(url)s',
'%(class)s',
'%(color)s',
'%(grape)s',
%(vintage)d,
'%(dryness)s',
'%(shop)s',
'%(added)s'
) ON DUPLICATE KEY UPDATE
type = '%(type)s',
volume = '%(volume)s',
strength = %(strength)d,
country = '%(country)s',
price = %(price)d,
description = '%(description)s',
year = '%(year)s',
image = '%(image)s',
url = '%(url)s',
class = '%(class)s',
color = '%(color)s',
grape = '%(grape)s',
vintage = %(vintage)d,
dryness = '%(dryness)s',
shop = '%(shop)s',
added = '%(added)s""" % data
当我尝试这样做时,我没有收到任何错误,但我的字符串消失了。有什么方法可以解决这个问题吗?
更新 我发现了这个问题。我试图用我的字典的unicode值格式化ascii字符串。我没有看到traceback因为try / except块,我从中调用了查询执行的方法。 故事的道德是:始终在Python 2.x中检查字符串编码
答案 0 :(得分:0)
“消失”是什么意思?如果您发出print query
,会返回什么?
看起来你错过了最后一行的单引号:不应该是added = '%(added)s'""" % data
答案 1 :(得分:0)
我怀疑你的数据字典丢失了一些密钥。
例如:
In [1]: "%(xx)s" % dict()
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
/<redacted>/<ipython-input-1-475612d1eaa2> in <module>()
----> 1 "%(xx)s" % dict()
KeyError: 'xx'