我是靠谱客的博主 满意枕头,最近开发中收集的这篇文章主要介绍python中字典的索引是什么_Python中的字典索引 | 學步園,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Python中的符合數據類型:字符串,列表和序列。它們用整數作為索引。如果你試圖用其他的類型做索引,就會產生錯誤。

>>> list = [1 ,2,3]

>>> list[0]

1

>>> list['one']

Traceback (most recent call last):

File "", line 1, in

list['one']

TypeError: list indices must be integers, not str

字典的索引可以是字符串,除了這一點,它與其組合類型非常相似。當然,字典的索引也可以是整數。

>>> dict1 = {'mother':'媽媽','father','爸爸'}

SyntaxError: invalid syntax

>>> dict1 = {'mother':'媽媽','father':'爸爸'}

>>> dict1

{'father': '爸爸', 'mother': '媽媽'}

我們也可以創造一個空字典然後在添加元素。

>>> eng2sp = {}

>>> eng2sp['one'] = 'uno'

>>> eng2sp['two'] = 'dos'

>>> eng2sp

{'one': 'uno', 'two': 'dos'}

字典元素以逗號作為分隔符,每個元素包含鍵和鍵值,他們倆用冒號進行分割

字典的刪除

>>> inventory = {'apples':430,'bananas':312,'oranges':525}

>>> inventory

{'bananas': 312, 'apples': 430, 'oranges': 525}

>>> del inventory['apples']

>>> inventory

{'bananas': 312, 'oranges': 525}

如果你想刪除所有的元素,可以使用clear方法

>>> inventory.clear

>>> inventory

{'bananas': 312, 'oranges': 525}

>>> inventory.clear()

>>> inventory

{}

使用函數len返回字典元素的數量

>>> os = {1:'Linux',2:'Windows'}

>>> len(os)

2

字典是可以改變的,如果你想修改字典,並且保留原來的備份,就要用到字典的copy方法,看看下面的例子:

>>> opp = {'up':'down','right':'left','true':'false'}

>>> alias = opp

>>> alias

{'right': 'left', 'up': 'down', 'true': 'false'}

>>> id(opp)

53056584

>>> id(alias)

53056584

>>> other = opp.copy()

>>> other

{'right': 'left', 'up': 'down', 'true': 'false'}

>>> id(other)

52898824

最后

以上就是满意枕头为你收集整理的python中字典的索引是什么_Python中的字典索引 | 學步園的全部内容,希望文章能够帮你解决python中字典的索引是什么_Python中的字典索引 | 學步園所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部