方法集锦3_字符串_python
Posted George
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了方法集锦3_字符串_python相关的知识,希望对你有一定的参考价值。
1.字符串拼接,join和列表的配合使用
a = ‘‘ d = [‘d‘,‘h‘,‘t‘,‘dg‘,‘gh‘] a = a.join(i for i in d) print(a)
运行结果:
PS D:PythonCode_Pythonlintcode> & D:/python_install/python.exe d:/Python/Code_Python/lintcode/lintcode_test12.py
dhtdggh
以上是关于方法集锦3_字符串_python的主要内容,如果未能解决你的问题,请参考以下文章