Python List list()方法
Python List list()方法
list() 方法用于將元組轉(zhuǎn)換為列表。
注:元組與列表是非常類(lèi)似的,區(qū)別在于元組的元素值不能修改,元組是放在括號(hào)中,列表是放于方括號(hào)中。
語(yǔ)法
list()方法語(yǔ)法:
list( tup )
參數(shù)
- tup -- 要轉(zhuǎn)換為列表的元組。
返回值
返回列表。
實(shí)例
以下實(shí)例展示了 list() 函數(shù)的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- aTuple = (123, 'codebaoku', 'google', 'abc'); aList = list(aTuple) print ("列表元素 : ") print(aList)以上實(shí)例輸出結(jié)果如下:
列表元素 : [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">下一節(jié):Python List append()方法</a></h3> <a class="bottom-summary-prompt" href="/python/python_jc/215.html"><h3>Python 教程</h3> </a>
相關(guān)文章
- Python break 語(yǔ)句
- Python 操作 MySQL 數(shù)據(jù)庫(kù)
- Python XML 解析
- Python 數(shù)組
- Python 列表
- Python 矩陣
- Python 回溯
- Python 樹(shù)遍歷算法
- Python 圖算法
- Python 算法理由
- Python3 簡(jiǎn)介
- 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()方法