12

我的清单为:

['t','e','s','t','s','t','r','i','n','g']

如何在每个字符串后添加空字符t, e, s, t, s, t, r, i, n, g?

4

1 回答 1

29

列表理解。

[c + '\0' for c in S]

但它闻起来像你想要 UTF-16LE 代替。

u'teststring'.encode('utf-16le')
于 2012-08-18T05:08:19.953 回答