美文网首页
python 字典,列表,字符串常用方法

python 字典,列表,字符串常用方法

作者: json_q | 来源:发表于2018-12-06 19:23 被阅读0次

字典方法

keys() :获取字典的键

dict = {'color': 'red', 'age': 21}
for key in dict.keys():
  print(key)
#输出结果
'color'
'age'

values():获取字典的值

dict = {'color': 'red', 'age': 21}
for value in dict.values():
  print(value)
#输出结果
'red'
21

items():获取字典的键值对,是一个元组

dict = {'color': 'red', 'age': 21}
for value in dict.items():
  print(value)
#输出结果
('color', 'red')
('age', 21)

列表相关的方法

append():往数组最后面插入一个元素

list = [1, 2, 3]
list.append(6)
print(list)
#得到结果是
[1, 2, 3, 6]

insert():往数组任意位置插入一个元素

list = [1, 2, 3, 4]
list.insert(1, 6)
#得到的结果是
[1, 6, 2, 3, 4]

index():获取元素的索引位置

list = [1, 2, 3]
print(list.index(2))
#得到的结果是
1

remove():删除数组的某一项

list = ['red', 'green', 'yellow']
list.remove('red')
#得到的结果是
['green', 'yellow']

sort(reverse=True):排序,默认不传reverse是升序,加上reverse关键字是降序

'''
不加关键字升序
'''
list = [1, 2, 4, 3, 8, 9, 6, 5]
list.sort()
print(list)
#得到结果是,list.sort()这个就是直接改变了list,返回的是None
[1, 2, 3, 4, 5, 6, 8, 9]
'''
加关键字降序,reverse=True
'''
list = [1, 2, 4, 3, 8, 9, 6, 5]
list.sort(reverse=True)
print(list)
#得到结果是
[9, 8, 6, 5, 4, 3, 2, 1]

[x:y]:切片,截取list,从x开始,到y结束,包含x,但是不包含y

list = [1, 2, 3, 4]
test1 = list[0: 2] #[1, 2]
test2 = list[1:2] #[2]
test3 = list[:3] #[1, 2, 3] ,前面没有代表从0开始
test4 = list[:-1] #[1, 2, 3] ,为负数,把负数加上list的长度即可相当于[:3]

相关文章

  • Python中的变量分类以及常用操作

    Python的变量分类: 列表、元组、字典、字符串常用操作

  • Python最常用的数据结构6种

    Python最常用的数据结构6种:数字、字符串、列表、元组、字典和集合。其中最为常用的是数字、字符串、列表和字典。...

  • Python ☞ day 3

    Python学习笔记之 字符串 & 列表 & 元组 & 字典 字符串 什么是字符串? 字符串运算 字符串方法 列表...

  • python 字典,列表,字符串常用方法

    字典方法 keys() :获取字典的键 values():获取字典的值 items():获取字典的键值对,是一个元...

  • Python语言的12个基础知识点小结

    python编程中常用的12种基础知识总结:正则表达式替换,遍历目录方法,列表按列排序、去重、字典排序、字典、列表...

  • 2018-06-29

    python学习 学习python字符串、列表、元组、字典、日期和时间模块

  • Python notes(2/3)

    目录 一,python 字符串 二,Python列表(List) 三,Python 元组 四,Python字典 五...

  • python

    contine继续下一个循环 for常用于遍历列表 字符串 字典等 Python 提供了 with 语法用于简化资...

  • python面试基本知识

    1、python基本数据类型 字符串 整型 元组 列表 字典 布尔类型 2、python参数传递方法 常见的有 位...

  • 第三周总结

    列表 元组 字典 字符串 List(列表) 是Python中使用最频繁的...

网友评论

      本文标题:python 字典,列表,字符串常用方法

      本文链接:https://www.haomeiwen.com/subject/iecacqtx.html