gpt4 book ai didi

python - 如何将来自用户的许多输入存储在一个集合中

转载 作者:行者123 更新时间:2023-12-03 18:17:18 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How do I call a function twice or more times consecutively?

(9 个回答)


去年关闭。




我的目标是以无序方式存储来自用户的许多输入。所以,我决定使用 set .我到目前为止的代码是:

a = input()
b = input()
c = input()
d = input()

all = a, b, c, d
print(set(all))

但是,我不想重复 input()多次像上面一样。有没有办法实现这一目标?

最佳答案

您可以将您对 input() 的调用放在理解中:

set(input() for i in range(4))

关于python - 如何将来自用户的许多输入存储在一个集合中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60136212/

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