标签: python python-2.7
假设:
['1 -1 1 1 1 1 1 1 1']
如何将其(有效地)转换为整数向量,如:
[1 -1 1 1 1 1 1 1 1]
谢谢。
答案 0 :(得分:1)
return [int(n) for n in s.split()]