从python中的输入行读取整数列表

时间:2017-02-04 17:39:50

标签: python python-2.7 list int

我正在使用Python 2.7.6。我有一个Python程序片段给我一个字符串列表,但我需要有一个整数列表。例如,程序如下:

L = []
nums = raw_input("")
L = nums.split()
print L

输出结果为:

>>> 
2 3 4
['2', '3', '4']
>>> 

但我需要有一个整数列表:[2, 3, 4]而不是['2', '3', '4']。我怎样才能做到这一点?请建议。 类似的问题/答案在这里:How do I read from a file and put it into a list as an integer? Python 但是,解决方案似乎期望每行中有一位数字,但是在这里,我在输入的同一行中有多个数字。

0 个答案:

没有答案