Python将列表转字符串该怎么操作?#Python2022-04-15 09:49分类:Python 0 条评论 请先 登录 后评论 默认排序 时间排序 1 个回答|212 次阅读 2022-04-15 09:50 Coco老师 - 官方公众号:青少儿编程学习网 擅长:编程教育 • 网站:https://kidscodes.cn/将列表 temp_list = ['h', 'e', 'l', 'l', 'o'] 转换成字符串'hello',代码如下:temp_list = ['h', 'e', 'l', 'l', 'o']result = ''.join(temp_list)print(result) 结果:hello 请先 登录 后评论