此问题已在此处有答案:
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))
1条答案
按热度按时间h9vpoimq1#
您可以直接在
split
上执行map
: