📜  python 将数字转换为数字列表 - Python 代码示例

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

代码示例3
list(map(int, str(678)))
[6, 7, 8]