python中 怎么将数字变成列表 比如将13457变成[1,3,4,5,7]

如题所述

>>> number = 13457
>>> list(map(int, str(number)))
[1, 3, 4, 5, 7]
>>>

温馨提示:答案为网友推荐,仅供参考
相似回答