PHP
·
发表于 5年以前
·
阅读量:8285
下面的代码段将字符串列表组合成单个字符串。
strings = ['50', 'python', 'snippets']
print(','.join(strings)) # 50,python,snippets