gpt4 book ai didi

python - 列表理解 : why is this a syntax error?

转载 作者:IT老高 更新时间:2023-10-28 20:34:19 24 4
gpt4 key购买 nike

为什么 print(x) 在下面的列表理解中无效(SyntaxError)?

my_list=[1,2,3]
[print(my_item) for my_item in my_list]

相比之下 - 以下不会给出语法错误:

def my_func(x):
print(x)
[my_func(my_item) for my_item in my_list]

最佳答案

因为 print 不是一个函数,它是一个语句,你不能在表达式中使用它们。如果您使用普通的 Python 2 语法,这会变得更加明显:

my_list=[1,2,3]
[print my_item for my_item in my_list]

看起来不太对劲。 :) my_item 周围的括号会欺骗您。

这在 Python 3 中发生了变化,顺便说一句,其中 print 一个函数,您的代码可以正常工作。

关于python - 列表理解 : why is this a syntax error?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2141098/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com