gpt4 book ai didi

python - 如何在Python的单行中将n个数字作为输入

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

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





How to read an array of integers from single line of input in python3

(4 个回答)


去年关闭。




就像在 C++ 中一样,我怎样才能让用户输入达到一个范围
下面是在 C++ 中获取用户输入的代码

#include<iostream>
using namespace std;
int main() {
int array[50];
cin>>n;
//ask a list
for(i = 0; i<n; i++){
cin>>array[i];
}
}
如何在 Python 3 中询问上述用户输入? (我不想在不同的行中输入)

最佳答案

这将转换由空格分隔的数字以存储在 ar 中:

ar = list(map(int, input().strip().split(' ')))

关于python - 如何在Python的单行中将n个数字作为输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48841186/

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