Guest User

Untitled

a guest
Oct 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. for i in a:
  2. res += u"<tr>"
  3. for y in i:
  4. res += u"<td>"
  5. #res += u"<td>{0}</td>".format(repr(y))
  6. qq='{0}'.format(y)
  7. qq=qq.decode('utf-8', 'ignore')
  8. res+=qq
  9. res += u"</td>"
  10. res += u"</tr>"
  11. res += u"</table>"
Add Comment
Please, Sign In to add comment