我尝试使用字符串格式将传入的CSV转换为XML。我收到以下错误:
ValueError: unsupported format character '"' (0x22) at index 36
我知道我正在使用"在某个地方我不应该但却无法找到它的位置。 "模板内部应全部封装在""" ......"""我无法在脚本中看到任何其他内容。
有人可以提出我出错的地方吗?
import csv
import sys
def csvDict(csvRow):
dict = {'Name': csvRow[0], 'p1t': csvRow[1], 'p1l': csvRow[2], 'p2t': csvRow[3], 'p2l': csvRow[4],
'outputWidth': csvRow[5], 'sourceTop': csvRow[6], 'sourceLeft': csvRow[7], 'sourceWidth': csvRow[8],
'sourceHeight': csvRow[9]}
return dict
# Get CSV File from the argument
csvFile = csv.reader(open(sys.argv[1], 'rt'))
# Convert CSV Into list for Processing
csvList = list(csvFile)
# Setup XML Variables Dictionary
outputVars = csvDict(csvList[0])
# Confirm Dictionary contains the right data
print outputVars
# XML Format Template
mapTemplate = """<map type="map2dpanel" name="%(Name)" width="%(outputWidth)" >
<point id="1" top="%(p1t)" left="%(p1l)" /><point id="2" top="%(p2t)" left="%(p2l)" />
<source image="current source" top="%(sourceTop)" left="%(sourceLeft)" width="%(sourceWidth)" height="%(sourceHeight)" />
</map>
"""
print mapTemplate % outputVars
答案 0 :(得分:2)
您忘记指定占位符的类型。 Python期望%(name)s
或%(name)d
或any of the other supported types。
相反,Python发现"
是下一个字符,它不是有效的格式字符:
name="%(Name)"
# -------^
由于您正在读取CSV文件中的值,因此它们都是字符串;将s
个字符添加到模板占位符:
mapTemplate = """\
<map type="map2dpanel" name="%(Name)s" width="%(outputWidth)s" >
<point id="1" top="%(p1t)s" left="%(p1l)s" /><point id="2" top="%(p2t)s" left="%(p2l)s" />
<source image="current source" top="%(sourceTop)s" left="%(sourceLeft)s" width="%(sourceWidth)s" height="%(sourceHeight)s" />
</map>
"""