📜  python 输入整数列表 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:18.898000             🧑  作者: Mango

代码示例3
#function to input list of type [cast]
def inputList(msg,cast):
    i = input(msg)[1:-1]
    a = [cast(e) for e in i.split(',')]
    return a
#example code:
#l = inputList("enter a list of numbers: ",int)
#example prompt:
#enter a list of numbers: [1,2,3,4,5]
#expected result for l:
#l = [1,2,3,4,5]