Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のようなリストを持っています:
['t','e','s','t','s','t','r','i','n','g']
各文字列の後にヌル文字を追加する方法t, e, s, t, s, t, ?ring
t
e
s
r
i
n
g
リストの理解。
[c + '\0' for c in S]
しかし、代わりに UTF-16LE が必要なようです。
u'teststring'.encode('utf-16le')