- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Python中list列表的一些进阶使用方法介绍由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
判断一个 list 是否为空 。
传统的方式:
1
2
3
4
|
if
len
(mylist):
# Do something with my list
else
:
# The list is empty
|
由于一个空 list 本身等同于 False,所以可以直接:
1
2
3
4
|
if
mylist:
# Do something with my list
else
:
# The list is empty
|
遍历 list 的同时获取索引 。
传统的方式:
1
2
3
4
|
i
=
0
for
element
in
mylist:
# Do something with i and element
i
+
=
1
|
这样更简洁些:
1
2
3
|
for
i, element
in
enumerate
(mylist):
# Do something with i and element
pass
|
list 排序 。
在包含某元素的列表中依据某个属性排序是一个很常见的操作。例如这里我们先创建一个包含 person 的 list:
1
2
3
4
5
|
class
Person(
object
):
def
__init__(
self
, age):
self
.age
=
age
persons
=
[Person(age)
for
age
in
(
14
,
78
,
42
)]
|
传统的方式是:
1
2
3
4
5
|
def
get_sort_key(element):
return
element.age
for
element
in
sorted
(persons, key
=
get_sort_key):
print
"Age:"
, element.age
|
更加简洁、可读性更好的方法是使用 Python 标准库中的 operator 模块:
1
2
3
4
|
from
operator
import
attrgetter
for
element
in
sorted
(persons, key
=
attrgetter(
'age'
)):
print
"Age:"
, element.age
|
attrgetter 方法优先返回读取的属性值作为参数传递给 sorted 方法。operator 模块还包括 itemgetter 和 methodcaller 方法,作用如其字面含义.
list解析 。
python有一个非常有意思的功能,就是list解析,就是这样的:
1
2
3
|
>>> squares
=
[x
*
*
2
for
x
in
range
(
1
,
10
)]
>>> squares
[
1
,
4
,
9
,
16
,
25
,
36
,
49
,
64
,
81
]
|
看到这个结果,看官还不惊叹吗?这就是python,追求简洁优雅的python! 。
其官方文档中有这样一段描述,道出了list解析的真谛:
List comprehensions provide a concise way to create lists. Common applications are to make new lists where each element is the result of some operations applied to each member of another sequence or iterable, or to create a subsequence of those elements that satisfy a certain condition. 。
还记得前面一讲中的那个问题吗?
找出100以内的能够被3整除的正整数.
我们用的方法是:
1
2
3
4
5
6
7
|
aliquot
=
[]
for
n
in
range
(
1
,
100
):
if
n
%
3
=
=
0
:
aliquot.append(n)
print
aliquot
|
好了。现在用list解析重写,会是这样的:
1
2
3
|
>>> aliquot
=
[n
for
n
in
range
(
1
,
100
)
if
n
%
3
=
=
0
]
>>> aliquot
[
3
,
6
,
9
,
12
,
15
,
18
,
21
,
24
,
27
,
30
,
33
,
36
,
39
,
42
,
45
,
48
,
51
,
54
,
57
,
60
,
63
,
66
,
69
,
72
,
75
,
78
,
81
,
84
,
87
,
90
,
93
,
96
,
99
]
|
震撼了。绝对牛X! 。
其实,不仅仅对数字组成的list,所有的都可以如此操作。请在平复了激动的心之后,默默地看下面的代码,感悟一下list解析的魅力.
1
2
3
|
>>> mybag
=
[
' glass'
,
' apple'
,
'green leaf '
]
#有的前面有空格,有的后面有空格
>>> [one.strip()
for
one
in
mybag]
#去掉元素前后的空格
[
'glass'
,
'apple'
,
'green leaf'
]
|
enumerate 。
这是一个有意思的内置函数,本来我们可以通过for i in range(len(list))的方式得到一个list的每个元素编号,然后在用list[i]的方式得到该元素。如果要同时得到元素编号和元素怎么办?就是这样了
1
2
3
4
5
6
|
>>>
for
i
in
range
(
len
(week)):
...
print
week[i]
+
' is '
+
str
(i)
#注意,i是int类型,如果和前面的用+连接,必须是str类型
...
monday
is
0
sunday
is
1
friday
is
2
|
python中提供了一个内置函数enumerate,能够实现类似的功能 。
1
2
3
4
5
6
|
>>>
for
(i,day)
in
enumerate
(week):
...
print
day
+
' is '
+
str
(i)
...
monday
is
0
sunday
is
1
friday
is
2
|
算是一个有意思的内置函数了,主要是提供一个简单快捷的方法.
官方文档是这么说的:
Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration. The next() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over sequence
顺便抄录几个例子,供看官欣赏,最好实验一下.
1
2
3
4
5
|
>>> seasons
=
[
'Spring'
,
'Summer'
,
'Fall'
,
'Winter'
]
>>>
list
(
enumerate
(seasons))
[(
0
,
'Spring'
), (
1
,
'Summer'
), (
2
,
'Fall'
), (
3
,
'Winter'
)]
>>>
list
(
enumerate
(seasons, start
=
1
))
[(
1
,
'Spring'
), (
2
,
'Summer'
), (
3
,
'Fall'
), (
4
,
'Winter'
)]
|
最后此篇关于Python中list列表的一些进阶使用方法介绍的文章就讲到这里了,如果你想了解更多关于Python中list列表的一些进阶使用方法介绍的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我想使用 R 预定义这样的列表 DATA<-list( list(list(),list(),list()), list(list(),list(),list()), list(list(),l
如何将一个列表添加到另一个列表,返回一个列表的列表? foo :: [a] -> [a] -> [[a]] 例如,我想要的结果是: foo [1,2] [3,4] 将是 [[1,2], [3,4]]。
我还没有在这里找到类似问题的解决方案,所以我会寻求你的帮助。 有 2 个列表,其中之一是列表列表: categories = ['APPLE', 'ORANGE', 'BANANA'] test_re
这个问题不同于Converting list of lists / nested lists to list of lists without nesting (这会产生一组非常具体的响应,但无法解决
原始列表转换为 List正好。为什么原始列表的列表不能转换为 List 的列表? { // works List raw = null; List wild = raw; } {
在下面的代码中,get()被调用并将其结果分配给类型为 List> 的变量. get()返回 List>并在类型参数为 T 的实例上调用设置为 ? ,所以它应该适合。 import java.util
原始列表转换为 List正好。为什么原始列表的列表不能转换为 List 的列表? { // works List raw = null; List wild = raw; } {
在insufficiently-polymorphic 作者说: def foo[A](fst: List[A], snd: List[A]): List[A] There are fewer way
我有下面的代码有效。 class ListManipulate(val list: List, val blockCount: Int) { val result: MutableList>
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 5 年前。 Improve this ques
在 scala (2.9) 中转换列表列表的最佳方法是什么? 我有一个 list : List[List[A]] 我想转换成 List[A] 如何递归地实现这一点?或者还有其他更好的办法吗? 最佳答案
我编写了这个函数来确定给定元素是否存储在元组列表的列表中,但目前它只搜索第一个列表。我将如何搜索其余列表? fun findItem (name : command, ((x,y)::firstlis
我创建了一个类名 objectA,它有 4 个变量:约会时间;字符串文本;变量 1,变量 2 我需要创建一个 ObjectA() 列表。然后首先按时间对它们进行分组,其次按 var1,然后按 var2
我有一套说法 char={'J','A'} 和列表的列表 content = [[1,'J', 2], [2, 'K', 3], [2, 'A', 3], [3,'A', 9], [5, 'J', 9
我有以下列表 List >>> titles = new ArrayList >>> ();我想访问它的元素,但我不知道该怎么做.. 该列表有 1 个元素,它又包含 3 个元素,这 3 个元素中的
转换 List[List[Long]] 的最佳方法是什么?到 List[List[Int]]在斯卡拉? 例如,给定以下类型列表 List[List[Long]] val l: List[List[Lo
我有一个来自 Filereader (String) 的 List-List,如何将其转换为 List-List (Double):我必须返回一个包含 line-Array 的第一个 Values 的
我收集了List> 。我需要将其转换为List> 。这是我尝试过的, List> dataOne = GetDataOne(); var dataTwo = dataOne.Select(x => x
这个问题在这里已经有了答案: Cannot convert from List to List> (3 个答案) 关闭 7 年前。 我没有得到这段代码以任何方式编译: List a = new Ar
这个问题在这里已经有了答案: Cannot convert from List to List> (3 个答案) 关闭 7 年前。 我没有得到这段代码以任何方式编译: List a = new Ar
我是一名优秀的程序员,十分优秀!