标题: [问题求助] [已解决]python切割带括号的字符串 [打印本页]
作者: Blakelee 时间: 2020-6-2 17:43 标题: [已解决]python切割带括号的字符串
本帖最后由 Blakelee 于 2020-6-2 22:34 编辑
大家好,想把一行字符串a b c d {5, 920} e切割成列表[a,b,c,d,5,920,e],用python应该怎么实现呢?谢谢
作者: ivor 时间: 2020-6-2 21:10
- import re
- a = "a b c d {5, 920} e"
- print([i for i in re.split('[,\{\}\s]',a) if i])
复制代码
作者: Blakelee 时间: 2020-6-2 22:33
谢谢你,试用了,可行。
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |