我正在尝试读取一个列表,值可以是单个值,也可以有多个用逗号分隔的条目,我的目标是为列表中的第一个值附加 href 链接,即 col[0],我遇到以下编译错误
INPUT:-
cols=['409452, 12345', '', '', 'This a test python script']
EXPECTED OUTPUT:-
<tr>
<td><a href=http://data/409452>409452,<a href=http://data/12345>12345</a></td>
<td></td>
<td></td>
<td>This a test python script</td>
Python代码:-
cols=cols=['409452, 12345', '', '', 'This a test python script']
TEMPLATE = [' <tr>']
for col in cols:
value = col.split(",")
TEMPLATE.append(
' <td><a href=http://data/{}> {}</a></td>'.format(value)
TEMPLATE.append(' </tr>')
TEMPLATE = '\n'.join(TEMPLATE)
print TEMPLATE
Output I am getting:-
TEMPLATE.append(' </tr>')
^
SyntaxError: invalid syntax