首页 > 编程 > Python > 正文

【python】List与string转化--test_veh.py代码

2019-11-11 05:45:59
字体:
来源:转载
供稿:网友
第一种方法:

a = ['I', 0, 1, 2, 2, 3]for i in range(0,a._len_()):     a[i] = str(a[i])PRint astr1 = ", "str1 = str1.jion(a)print str1

运行结果为

['I', '0', '1', '2', '2', '3']

I01223

第二种方法:

a = ", ".jion(str(v) for v in a)

运行结果:

I01223

因为python的read和write方法的操作对象都是string。而操作二进制的时候会把string转换成list进行解析,解析后重新写入文件的时候,还得转换成string。>>> import string>>> str = 'abcde'>>> list = list(str)>>> list['a', 'b', 'c', 'd', 'e']>>> str'abcde'>>> str_convert = ''.join(list)>>> str_convert'abcde'>>>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表