前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Python中的列表

Python中的列表

作者头像
py3study
发布2020-01-10 17:24:18
5.1K0
发布2020-01-10 17:24:18
举报
文章被收录于专栏:python3

序列是Python中最基本的数据结构。序列中的每个元素都分配一个数字 - 它的位置,或索引,第一个索引是0,第二个索引是1,依此类推。 1.列表 数组:存储同一种数据类型的集合 scores = [12,23,45] 列表(打了激素的数组):可以存储任意数据类型

list = [1,1.2,True,'westos'] print(list,type(list)) 与字符串的索引一样,列表索引从0开始。列表可以进行截取、组合等。

Python中的列表
Python中的列表

#列表里面也可以嵌套列表 list2 = [1,2,3,4,[1,1.2,True,'westos']] print(list2,type(list2))

Python中的列表
Python中的列表
Python中的列表
Python中的列表

2.列表的特性

#索引 #正向索引 service = ['http','ftp','ssh'] print(service[0]) #反向索引 print(service[-1])

Python中的列表
Python中的列表

#切片 print(service[::-1]) # 列表元素序列反转 print(service[1:]) #列表中除了第一个元素之外的元素 print(service[:-1]) # 列表中除了最后一个元素之外的元素

Python中的列表
Python中的列表

#重复 print(service * 3) #重复三次 ['http', 'ftp', 'ssh', 'http', 'ftp', 'ssh', 'http', 'ftp', 'ssh'] 生成的新列表 #连接 service1 = ['mysql','firewalld'] print(service + service1)

Python中的列表
Python中的列表

#成员操作符 in #判断元素是否属于该列表 属于为真 不属于为假 not in #判断元素是否不属于该列表 属于为真 不属于为假 print('firewalld' in service) 判断firewalld是否是列表中的元素 print('ftp' in service) print('mysql' not in service)

假定有下面这样的列表: names = ['fentiao', 'fendai', 'fensi', 'apple'] 输出结果为:'I have fentiao, fendai, fensi and apple.'

print('I have ' + ','.join(names[:-1]) + ' and ' + names[-1])

题目:输入某年某月某日(yyyy-MM-dd),判断这一天是这一年的第几天? 1.cal = input('请输入日期 yyyy-MM-dd:') date = cal.split('-') #拆分日期 year = int(date[0]) month = int(date[1]) day = int(date[2]) arr = [0,31,28,31,30,31,30,31,31,30,31,30,31] num = 0 if ((year % 4 ==0) and (year % 100 !=0) or (year % 400== 0)): arr[2] = 29 for i in range(1,len(arr)): if month > i: num += arr[i] else: num += day break print('天数:',num)

2.date=input('请输入日期: ') date1=date.split('-') year=int(date1[0]) mon=int(date1[1]) day=int(date1[2]) k=0 list1=[0,31,28,31,30,31,30,31,31,30,31,30,31] list2=[0,31,29,31,30,31,30,31,31,30,31,30,31] if (year%400 == 0 or (year%4 == 0 and year%100 != 0)) : for i in list2[:mon] : k+=i print('第%d 天' %(k+day)) else : for i in list1[:mon] : k+=i print('第%d 天' %(k+day))

Python中的列表
Python中的列表

列表元素的增加 service = ['http','ftp','ssh']

#append():追加一个元素到列表 service.append('firewalld') print(service)

#extend():拉伸 追加多个元素到列表中 service.extend(['mysql','nfs']) print(service)

#insert() 在指定索引处插入元素 service.insert(1,'https') print(service)

#remove:删除列表元素 service = ['http','ftp','ssh'] #a = service.remove('ftp') #print(a) #print(service)

#从内存中删除一个数据 del service[1] print(service) service = ['ftp','http','http','ssh','ftp','ssh','ftp','ssh']

#查看元素在列表中出现的次数 print(service.count('ftp'))

#查看指定元素的索引值(可以指定索引范围) print(service.index('ssh')) print(service.index('ssh',4,7)) import random

列表元素的排序 # 默认是按照Ascii码进行排序的 li = list(range(100)) print(li) random.shuffle(li) print(li)

Python包含以下方法:

Python中的列表
Python中的列表
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/08/23 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
云数据库 SQL Server
腾讯云数据库 SQL Server (TencentDB for SQL Server)是业界最常用的商用数据库之一,对基于 Windows 架构的应用程序具有完美的支持。TencentDB for SQL Server 拥有微软正版授权,可持续为用户提供最新的功能,避免未授权使用软件的风险。具有即开即用、稳定可靠、安全运行、弹性扩缩等特点。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档