Python List list()方法
Python List list()方法
list() 方法用于將元組轉換為列表。
注:元組與列表是非常類似的,區別在于元組的元素值不能修改,元組是放在括號中,列表是放于方括號中。
語法
list()方法語法:
list( tup )
參數
- tup -- 要轉換為列表的元組。
返回值
返回列表。
實例
以下實例展示了 list() 函數的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- aTuple = (123, 'codebaoku', 'google', 'abc'); aList = list(aTuple) print ("列表元素 : ") print(aList)以上實例輸出結果如下:
列表元素 : [123, 'codebaoku', 'google', 'abc']<a href="/python/python_jc/232.html"><img class="navup" src="/images/up.gif" alt="Python 列表 List" />Python 列表 List</a>
<h3><a href="/python/python_jc/3143.html">下一節:Python List append()方法</a></h3> <a class="bottom-summary-prompt" href="/python/python_jc/215.html"><h3>Python 教程</h3> </a>
相關文章
- Python break 語句
- Python 操作 MySQL 數據庫
- Python XML 解析
- Python 數組
- Python 列表
- Python 矩陣
- Python 回溯
- Python 樹遍歷算法
- Python 圖算法
- Python 算法理由
- Python3 簡介
- Python File isatty() 方法
- Python os.fchdir() 方法
- Python os.mkdir() 方法
- Python os.remove() 方法
- Python os.stat_float_times() 方法
- Python ljust()方法
- Python swapcase()方法
- Python List sort()方法
- Python 字典 Dictionary keys()方法