代码之家  ›  专栏  ›  技术社区  ›  prosseek

如何在Python中将元组转换为数组?

  •  18
  • prosseek  · 技术社区  · 14 年前

    假设我有一个元组 t = (1,2,3,4)

    array = []
    for i in t:
        array.append(i)
    

    但我更喜欢x.toArray()之类的东西。

    1 回复  |  直到 10 年前
        1
  •  61
  •   Mark Byers    14 年前

    如果要将元组转换为 列表 (如你所愿)用这个:

    >>> t = (1, 2, 3, 4)   # t is the tuple (1, 2, 3, 4)
    >>> l = list(t)        # l is the list [1, 2, 3, 4]
    

    此外,我建议不要使用 tuple 作为变量的名称。