gpt4 book ai didi

Python:从垂直线用户输入到列表

转载 作者:行者123 更新时间:2023-11-30 22:49:15 24 4
gpt4 key购买 nike

我知道如何将水平用户输入更改为列表。

numbers = [int(n) for n in input().split()]

但不知道如果用户输入是垂直的(输入整数后输入:224, 32, 5)该怎么办...

示例输入:

224 32 5

示例输出:

[224, 32, 5]

最佳答案

number_read = raw_input()
number_list = []
while number_read != 'q':
number_list.append(int(number_read))
number_read = raw_input()

因此,一旦用户输入 q 并按 Enter 键,您就完成了输入收集

关于Python:从垂直线用户输入到列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39846836/

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