有没有一种Python方法可以将输入整数列表(可能是一个字符)转换为整数列表?[副本]

pkwftd7m  于 2023-05-19  发布在  Python
关注(0)|答案(1)|浏览(118)

此问题已在此处有答案

How do I parse a string to a float or int?(32个回答)
How can I collect the results of a repeated calculation in a list, dictionary etc. (or make a copy of a list with each element modified)?(2个答案)
4年前关闭。
我想用一个for循环把一行整数转换成整数,有没有更pyhtonic的方法??

a = input().strip().split()
l = []
for i in a:
    l.append(int(i))
h9vpoimq

h9vpoimq1#

您可以直接在split上执行map

l = list(map(int, input().strip().split()))

相关问题