我有两个字符串:
a ='hellowww'
b ='world'
预期产量
c = 'hweolrllodwww'
我的代码:
for x,y in zip(a,b):
print(x,y)
在我的情况下不起作用。
注意:两个字符串的长度,可能不相同。
答案 0 :(得分:4)
zip
停止。您可以通过itertool
和chain
使用zip_longest
模块:
from itertools import chain, zip_longest
res = ''.join(chain.from_iterable(zip_longest(a, b, fillvalue='')))
# 'hweolrllodwww'