gpt4 book ai didi

python - 将数字转换为整数列表

转载 作者:IT老高 更新时间:2023-10-28 22:19:31 27 4
gpt4 key购买 nike

下面的magic函数怎么写?

>>> num = 123
>>> lst = magic(num)
>>>
>>> print lst, type(lst)
[1, 2, 3], <type 'list'>

最佳答案

你是说这个吗?

num = 1234
lst = [int(i) for i in str(num)]

关于python - 将数字转换为整数列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/780390/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com