方法集锦3_字符串_python
2021-01-29 01:14
阅读:610
标签:方法 test 运行 nbsp lint lintcode tco ntc 集锦 1.字符串拼接,join和列表的配合使用 运行结果: 方法集锦3_字符串_python 标签:方法 test 运行 nbsp lint lintcode tco ntc 集锦 原文地址:https://www.cnblogs.com/yunxintryyoubest/p/12834069.html
a = ‘‘
d = [‘d‘,‘h‘,‘t‘,‘dg‘,‘gh‘]
a = a.join(i for i in d)
print(a)
PS D:\Python\Code_Python\lintcode> & D:/python_install/python.exe d:/Python/Code_Python/lintcode/lintcode_test12.py
dhtdggh
评论
亲,登录后才可以留言!