gpt4 book ai didi

python - 在 lambda 中使用 print

转载 作者:太空宇宙 更新时间:2023-11-03 12:13:43 25 4
gpt4 key购买 nike

我正在尝试在 lambda 中使用 print。类似的东西:

lambda x: print x

据我所知,在 Python 2.7 中 print 不是一个函数。所以,基本上,我的问题是:在 Python 2.7 中是否有一种将 print 用作函数的漂亮方法?

最佳答案

您可以从 __future__ 导入 print_function 并将其用作这样的函数

from __future__ import print_function
map(print, [1, 2, 3])
# 1
# 2
# 3

关于python - 在 lambda 中使用 print,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22198754/

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