如何将列表转换为字符串 [英] How to convert list to string

查看:75
本文介绍了如何将列表转换为字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Python将列表转换为字符串?

How can I convert a list to a string using Python?

推荐答案

通过使用''.join

list1 = ['1', '2', '3']
str1 = ''.join(list1)

或者,如果列表是整数,则在加入元素之前将其转换.

Or if the list is of integers, convert the elements before joining them.

list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)

这篇关于如何将列表转换为字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆