gpt4 book ai didi

python - 相同的指令,不同的结果

转载 作者:太空狗 更新时间:2023-10-29 21:25:04 24 4
gpt4 key购买 nike

有人可以帮助我理解以下 Python 代码 (python 3.2) 中发生了什么吗?我在这里真的一无所知。

import sys
u = sys.stdin.readline()
# try entering the string "1 2 3"
r = map(lambda t: int(t.strip()),u.split())
print(sum(r)) # prints 6
print(sum(r)) # prints 0 ?

谢谢。

最佳答案

Python 3.x 中的

map() 返回迭代器,而不是列表。第一次通过 sum() 将其消耗掉,第二次什么都不留下。

关于python - 相同的指令,不同的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6711311/

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