导语:
本文主要介绍了关于Python怎么将列表转字符串的相关知识,包括字符串转化为数字,以及python输入字符串转成列表这些编程知识,希望对大家有参考作用。
Python怎么将列表转字符串
例子:
将列表 temp_list = ['h', 'e', 'l', 'l', 'o'] 转换成字符串'hello',代码如下:
temp_list = ['h', 'e', 'l', 'l', 'o']
result = ''.join(temp_list)
print(result)
hello
推荐学习《
》。
字符串对象的方法join其描述如下:
大致意思是:s.join(iterable)就是以s字符串为链接,将iterable对象中的元素拼接成一个字符串并返回该字符串。
def join(self, iterable): # real signature unknown; restored from __doc__
"""
S.join(iterable) -> str
Return a string which is the concatenation of the strings in the
iterable. The separator between elements is S.
"""
return ""
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 在 python 中使用 np.unique 的两种方法09/06
- ♥ 安装后如何运行python?10/24
- ♥ 学php和python哪个更好12/23
- ♥ 如何通过Python获取文件指定行的内容?11/03
- ♥ Python中检查列表中是否存在重复元素的三种方法08/29
- ♥ python函数中的形参和实参一样吗?12/01
内容反馈