将int转换为python列表[duplicate]

qyuhtwio  于 2023-01-03  发布在  Python
关注(0)|答案(1)|浏览(118)
    • 此问题在此处已有答案**:

How to split an integer into a list of digits?(12个答案)
八年前就关门了。
我如何将一个整型转换成一个数字列表,例如。
a = 1234
我得把它当作
[一、二、三、四]
我试过用
名单(a)
但是显示了错误还有什么我能用的

nmpmafwu

nmpmafwu1#

可以先将a转换为字符串:

In [106]: map(int, str(a)) #in python3, you need list(map(int, str(a)))
Out[106]: [1, 2, 3, 4]

或者使用列表解析代替map

In [108]: [int(digit) for digit in str(a)]
Out[108]: [1, 2, 3, 4]

或手动方法:

In [10]: def bar(num):
    ...:     res=[]
    ...:     while num>0:
    ...:         res.append(num%10)
    ...:         num//=10
    ...:     return res[::-1]

In [11]: bar(1234567890)
Out[11]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]

所有三种方式在时间上都是相同的:

In [24]: def foo(num):
    ...:     return list(map(int, str(num)))

In [25]: def bar(num):
    ...:     res=[]
    ...:     while num>0:
    ...:         res.append(num%10)  #or try divmod(n, 10) if you like builtins
    ...:         num//=10
    ...:     return res[::-1]

In [26]: def lstcomp(num):
    ...:     return [int(digit) for digit in str(num)]

In [27]: num=1234567890123456789012345678901234567890

In [28]: timeit foo(num)
100000 loops, best of 3: 13.1 µs per loop

In [29]: timeit bar(num)
100000 loops, best of 3: 15.7 µs per loop

In [30]: timeit lstcomp(num)
100000 loops, best of 3: 14.6 µs per loop

编辑:

你也可以生成一个元组来表示"链表",就像@J.F. Sebastian提到的那样:

In [523]: f = lambda n, ll=None: f(n//10, (n%10, ll)) if n else ll

In [524]: f(123)
Out[524]: (1, (2, (3, None)))

其可以在O(n)时间内被转换为普通列表:

In [537]: llst=f(123)
     ...: res=[]
     ...: while llst:
     ...:     res.append(llst[0])
     ...:     llst=llst[1]
     ...: print res
[1, 2, 3]

相关问题