标签: python
我的列表为:
['t','e','s','t','s','t','r','i','n','g']
如何在每个字符串t之后添加空字符,e,s,t,s,t,{{1 },r,i,n?
t
e
s
r
i
n
答案 0 :(得分:24)
列表理解。
[c + '\0' for c in S]
但它闻起来像你想要的是UTF-16LE。
u'teststring'.encode('utf-16le')