python拆分整型字符串并转为整型list

Posted Apollo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python拆分整型字符串并转为整型list相关的知识,希望对你有一定的参考价值。

python正则表达式模块,拆分字符串,re.split()

eg:

s = ‘1, 2, 3, 4‘

拆分组成数字list:

strs = re.split(‘, ‘, s);

print(strs);

结果:[‘1‘, ‘2‘, ‘3‘, ‘4‘]

 

 

转成int行list:

strs = list(map(int, strs));

print(strs);

结果:[1, 2, 3, 4]

 

如果strs中有多个分隔符,模式串中间应用“|”分隔各个分隔字符(或分隔字符串):

eg:

strs = ‘[112, 236, 372; 131]‘;

strs = re.split(‘, |; |\[|\]‘);

print(strs);

结果: [‘‘, ‘112‘, ‘236‘, ‘372‘, ‘131‘, ‘‘]

去除首尾空字符串:

strs.remove(‘‘); ####一次只能去除一个空串

 

参考:

http://www.jb51.net/article/85001.htm

https://blog.csdn.net/programmer_at/article/details/77409507?locationNum=7&fps=1

以上是关于python拆分整型字符串并转为整型list的主要内容,如果未能解决你的问题,请参考以下文章

Python变量基础知识

C语言中 字符串如何转为整型数值

Python 之数据类型

c语言如何将字符串转为二进制的整型然后保存到整型数组里?

Python猜年龄

C语言函数实现 | 02-整型数据转为字符串