python相关

numbers=['1','2','3']

元素列表转整数:

方法一:

numbers=[int(x) for x in numbers]

方法二:

numbers=list(map(int,numbersl))

你可能感兴趣的:(python相关)