博客
关于我
《Python全栈开发:Python 列表List》
阅读量:235 次
发布时间:2019-03-01

本文共 502 字,大约阅读时间需要 1 分钟。

一、列表(list)

  • 列表由方括号包裹,元素之间用逗号分隔
  • 列表中的每个元素可以是各种数据类型:数值、字符串、列表(支持嵌套)、字典、布尔值等
  • 列表是有序的,可修改(值变,地址不变)

1. 下标、切片获取列表元素

my_list = [123, 'yexiang', ['美女', 18], False]print(my_list[0]) # 输出: 123print(my_list[2]) # 输出: ['美女', 18]print(my_list[0:]) # 输出: [123, 'yexiang', ['美女', 18], False]print(my_list[0:3]) # 输出: [123, 'yexiang', ['美女', 18]]print(my_list[0:-1]) # 输出: [123, 'yexiang', ['美女', 18]]

2. 列表操作示例

  • 列表的长度:len(my_list)
  • 添加元素:my_list.append('新元素')
  • 修改元素:my_list[0] = '修改后的元素'
  • 删除元素:del my_list[0]my_list.pop(0)

转载地址:http://rnyt.baihongyu.com/

你可能感兴趣的文章
Orcale表被锁
查看>>
svn访问报错500
查看>>
sum(a.YYSR) over (partition by a.hy_dm) 不需要像group by那样需要分组函数。方便。
查看>>
ORCHARD 是什么?
查看>>
Struts2中使用Session的两种方法
查看>>
order by rand()
查看>>
Orderer节点启动报错解决方案:Not bootstrapping because of 3 existing channels
查看>>
org.apache.axis2.AxisFault: org.apache.axis2.databinding.ADBException: Unexpected subelement profile
查看>>
org.apache.commons.beanutils.BasicDynaBean cannot be cast to ...
查看>>
org.apache.dubbo.common.serialize.SerializationException: com.alibaba.fastjson2.JSONException: not s
查看>>
sqlserver学习笔记(三)—— 为数据库添加新的用户
查看>>
org.apache.ibatis.exceptions.PersistenceException:
查看>>
org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned
查看>>
org.apache.ibatis.type.TypeException: Could not resolve type alias 'xxxx'异常
查看>>
org.apache.poi.hssf.util.Region
查看>>
org.apache.xmlbeans.XmlOptions.setEntityExpansionLimit(I)Lorg/apache/xmlbeans/XmlOptions;
查看>>
org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /
查看>>
org.hibernate.HibernateException: Unable to get the default Bean Validation factory
查看>>
org.hibernate.ObjectNotFoundException: No row with the given identifier exists:
查看>>
SQL-CLR 类型映射 (LINQ to SQL)
查看>>