Python split() 不删除列表中的分隔符
我们有这个列表:
lista = ['int32',
'decimal(14)',
'int(32)',
'string',
'date',
'decimal(27,2)',
'decimal(17,2)']
我们需要:
['int32', 'decimal', '(14)',
'int', '(32)',
'string',
'date',
'decimal','(27,2)',
'decimal','(17,2)']
我们使用
for i in lista:
.split('(')
但在这个过程中我们失去了 (
。
We have this list:
lista = ['int32',
'decimal(14)',
'int(32)',
'string',
'date',
'decimal(27,2)',
'decimal(17,2)']
And we need:
['int32', 'decimal', '(14)',
'int', '(32)',
'string',
'date',
'decimal','(27,2)',
'decimal','(17,2)']
We use
for i in lista:
.split('(')
but we lose (
in the process.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这段代码有效:)
works this code :)