gpt4 book ai didi

python - 如何在 python 中使用 raw_input 将元组作为输入?

转载 作者:太空狗 更新时间:2023-10-30 01:56:45 25 4
gpt4 key购买 nike

我正在尝试接受意见。但这不是正确的语法。

a, b, c = (int(x) for x in raw_input().strip(' '))

我的想法是从一行中获取多个值,其中整数由空格分隔。我该怎么做?

最佳答案

你们很亲密。它是split而不是strip:

a, b, c = (int(x) for x in raw_input().split())

这将恰好需要 3 个整数,不多也不少。如果你想将任意数量的数据放入一个元组中,试试这个:

tup = tuple(int(x) for x in raw_input().split())

关于python - 如何在 python 中使用 raw_input 将元组作为输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48472265/

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