Python split() 不删除列表中的分隔符

发布于 2025-01-09 06:10:27 字数 392 浏览 1 评论 0原文

我们有这个列表:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

峩卟喜欢 2025-01-16 06:10:27

这段代码有效:)

lista = ['int32','decimal(14)','int(32)','string','date','decimal(27,2)','decimal(17,2)']
lst = []
for i in lista:
    x= (i.find('('))
    if(x != -1):
        lst.append(i[0:x])
        lst.append(i[x::])
    else:
        lst.append(i)
print(lst)

works this code :)

lista = ['int32','decimal(14)','int(32)','string','date','decimal(27,2)','decimal(17,2)']
lst = []
for i in lista:
    x= (i.find('('))
    if(x != -1):
        lst.append(i[0:x])
        lst.append(i[x::])
    else:
        lst.append(i)
print(lst)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文