Python: How to remove the last comma from tuples

感情迁移 提交于 2019-12-12 01:58:08

问题


How can I remove the comma from each tuple in the list. I want to make a list of tuples from 1 list, like this:

l = [1,2,3,5,4]

l1 = [ ]

l2 =  [ ]

for i in l:

    l1.append (i)
    t = tuple(l1)
    l2.append(t)
    l1 = []

print l2

Expected result:

[(1), (2), (3), (5), (4)]

Real result:

[(1,), (2,), (3,), (5,), (4,)]

回答1:


If you only want the first element of each tuple in the list displayed (without a comma), you can always manually format the output by using something like this:

l = [1, 2, 3, 5, 4]
l1 = []
l2 = []
for i in l:
    l1.append(i)
    t = tuple(l1)
    l2.append(t)
    l1 = []

print '[' + ', '.join('({})'.format(t[0]) for t in l2) + ']'

Output:

[(1), (2), (3), (5), (4)]

BTW, you could also shorten the construction ofl2to just this:

l2 = [tuple([value]) for value in l]


来源:https://stackoverflow.com/questions/27219279/python-how-to-remove-the-last-comma-from-tuples

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!