Python实现按逗号分隔列表的方法

作者:JD_peterLi 时间:2023-06-08 08:32:16 

方法一:


def commaSpiltList(self, listData):
listData = list(listData)
strs = str(listData[0])
for letter in range(1, len(listData) - 1):
strs = strs + ',' + str(listData[letter])
strs += ',' + str(listData[len(listData) - 1])
print(strs)

方法二:


#!/usr/bin/python
# -*- coding: UTF-8 -*-

L = [1,2,3,4,5]
s1 = ','.join(str(n) for n in L)
print s1

注意:字符串中替换字符的方法


s1 = ','.join(str(n) for n in listData)

来源:https://blog.csdn.net/I_peter/article/details/79020205

标签:Python,逗号,列表
0
投稿

猜你喜欢

  • Java实现上传Excel文件并导入数据库

    2024-01-22 02:47:44
  • Python中的面向对象编程详解(上)

    2021-10-12 14:33:45
  • Python双精度浮点数运算并分行显示操作示例

    2024-01-01 21:33:10
  • python在不同层级目录import模块的方法

    2023-02-05 01:45:03
  • Python subprocess模块功能与常见用法实例详解

    2021-08-30 02:46:43
  • Python with语句上下文管理器两种实现方法分析

    2023-03-21 21:50:18
  • python如何为list实现find方法

    2022-01-14 09:15:56
  • Django中针对基于类的视图添加csrf_exempt实例代码

    2021-05-22 03:08:19
  • 详解微信小程序之提高应用速度小技巧

    2024-04-22 22:17:57
  • ASP项目中的asp分页 翻页模块函数

    2010-04-03 21:03:00
  • JavaScript调用ajax获取文本文件内容实现代码

    2024-04-30 10:15:52
  • Python学习之书写格式及变量命名

    2023-08-23 14:53:08
  • 使用Python绘制图表大全总结

    2022-08-09 20:35:27
  • 详解小程序循环require之坑

    2024-02-24 03:38:29
  • 微信开发 JS-SDK 6.0.2 经常遇到问题总结

    2024-02-27 08:28:53
  • python 同时运行多个程序的实例

    2021-03-25 07:36:20
  • Python代码实现列表分组计数

    2022-11-03 07:58:38
  • Git 标签使用详解

    2023-09-06 14:09:32
  • 将python依赖包打包成window下可执行文件bat方式

    2022-01-25 08:11:43
  • 如何使用五行Python代码轻松实现批量抠图

    2023-10-06 08:05:20
  • asp之家 网络编程 m.aspxhome.com