>>> intList = []>>> for i in '1,2,3'.split(','): intList.append(int(i)) >>> intList[1, 2, 3]
不用,加单引号表示是一个字符串
[int(i) for i in '1,2,3'.split(',')]
字符串分割肯定还是子字符串额,可以遍历一遍,强转为int。
转整型