在python中为字符串添加空字符

时间:2012-08-18 05:05:37

标签: python

我的列表为:

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

如何在每个字符串t之后添加空字符,estst,{{1 },rin

1 个答案:

答案 0 :(得分:24)

列表理解。

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

但它闻起来像你想要的是UTF-16LE。

u'teststring'.encode('utf-16le')