English 中文(简体)
清单中按原样分列的物体
原标题:split objects in a list separated by , in python
  • 时间:2011-10-25 13:34:38
  •  标签:
  • python

我有一份内容清单。 对于每个要素,我想将数字分成3个,按数字分列,并加以印刷。

我的法典没有做我想要的东西。 :

l = [ 14,23,63
 , 41,20,76
 , 65,23,42
 ]
for element in l:
    element.split( , )
    print element[0],element[1],element[2] #outcome should be e.g. 14,23,63
最佳回答

<代码>s.split 回归新名单。

for element in l:
    parts = element.split( , )
    print parts

另外,你还可能希望搁置(element.strip().split( , ))。

问题回答
print [map(int, x.split(",")) for x in l]

印刷

[[14, 23, 63], [41, 20, 76], [65, 23, 42]]

这不仅使扼杀分开,而且还将元素转换为ger,从而暗含地剥夺了新线特性。

splitElements = element.split( , )
print splitElements[0],splitElements[1],splitElements[2]




相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签