盐焗小星球 发表于 2023-1-17 05:03:01

Python表达式的输出含义

We initialise the variable ns =
What is the output of the following Python expressions?
a. list(map(lambda x : 2*x+1,ns))
b. list(filter(lambda x : x%2 == 1,ns))
c.
d. for y in ]
e. for y in ]

我们初始化变量ns = 。
以下Python表达式的输出是什么?

Mta123456 发表于 2023-1-17 08:27:33

a.
b.
c.
d.
e.

月光沙漠 发表于 2023-1-17 09:15:57

a.
b.
c.
d.
e.

tommyyu 发表于 2023-1-17 10:02:39

论坛是讨论交流的地方,不是问作业答案的地方。这些题都比较简单,你应该自己尝试去做,如果有不会的函数或者语法也可以来论坛问,但是不能直接把作业或者题给放上来询问答案

Mike_python小 发表于 2023-1-18 10:24:59

自己做

liuhongrun2022 发表于 2023-1-18 17:07:49

同上

chinajz 发表于 2023-1-18 18:45:09

ns =
print(list(map(lambda x : 2*x+1,ns)))
print(list(filter(lambda x : x%2 == 1,ns)))   
print()
print( for y in ])
print( for y in ])

运行结果:





请按任意键继续. . .
页: [1]
查看完整版本: Python表达式的输出含义