gpt4 book ai didi

python - 相当于 python 中的 java.util.Scanner

转载 作者:太空宇宙 更新时间:2023-11-04 02:05:54 24 4
gpt4 key购买 nike

在 Java 中,可以这样写:

Scanner scan = new Scanner(System.in);
x = scan.nextInt();
y = scan.nextDouble();

等等

这在 Python 3 中的等价物是什么?输入是一个空格分隔的整数列表,我不想使用 strip() 方法。

最佳答案

使用input()方法:

x = int(input())
y = float(input())

如果您要获取一个以空格分隔的整数列表,并将它们分开存储:

`input: 1 2 3 4`
ints = [int(x) for x in input().split()]
print(ints)
[1, 2, 3, 4]

关于python - 相当于 python 中的 java.util.Scanner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54733367/

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