将字符串转换为整数数组jython

时间:2014-04-07 04:44:40

标签: python arrays string integer jython

def convertToInteger(stringID):
  id = [0, 1, 2, 3, 4, 5, 6]

我需要使用参数stringID并将其转换为整数形式的数组id

任何提示都将不胜感激!

1 个答案:

答案 0 :(得分:1)

尝试使用list comprehensions

stringId = '0123456'
[int(x) for x in stringId]
=> [0, 1, 2, 3, 4, 5, 6]

或者,使用map

map(int, stringId)
=> [1, 2, 3, 4, 5, 6]