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()方法