search
HomeBackend DevelopmentPython TutorialHow to use dictionary in python? Use of python dictionary

The content of this article is to introduce how to use dictionary in python? How to use python dictionary. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Dictionaries, like sets, are unordered and cannot be accessed through indexes, but only through keys.

The keys of the dictionary must be immutable data types, such as numbers, strings, tuples, etc. Mutable objects such as lists cannot be used as keys.

Create dictionary and add and remove dictionary:

#创建字典
a = {'name':'xiaobin','age':18}
print(a)
b = dict(name = 'xiaobin',age = '18')
print(b)

#字典的添加,键不重名的添加,重名的会覆盖更新
a['from'] = 'anhui'
print(a)
a.update({'hobby':'football','age':20})
print(a)

#字典元素的去除
b = a.pop('age')
print(b)
print(a)

运行结果:
{'name': 'xiaobin', 'age': 18}
{'name': 'xiaobin', 'age': '18'}
{'name': 'xiaobin', 'age': 18, 'from': 'anhui'}
{'name': 'xiaobin', 'age': 20, 'from': 'anhui', 'hobby': 'football'}
18
{'name':'xiaobin'}

Modification of dictionary:

info  = {'a':[1,2,4],'b':[4,5,6]}
info['a'][2] = 3
print(info)
运行结果:{'a': [1, 2, 3], 'b': [4, 5, 6]}

Membership of dictionary:

#成员关系
a = {'a':1,'b':2}
print('b' in a)
运行结果:True

Method of dictionary:

a = {'a':1,'b':2}
print(a.keys())
print(a.values())
print(a.items())

运行结果:
dict_keys(['a', 'b'])
dict_values([1, 2])
dict_items([('a', 1), ('b', 2)])

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study. For more related video tutorials, please visit: Python video tutorial, Python3 video tutorial, bootstrap video tutorial!

The above is the detailed content of How to use dictionary in python? Use of python dictionary. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
获取字典中的第一个和最后一个元素的Python程序获取字典中的第一个和最后一个元素的Python程序Sep 07, 2023 pm 05:01 PM

Python是一种解释型的、面向对象的、高级的编程语言,具有动态语义。由GudioVanRossum于1991年开发。它支持多种编程范式,包括结构化、面向对象和函数式编程。在深入讨论这个主题之前,让我们先复习一下与我们提供的问题相关的基本概念。字典是一组独特、可变且有序的项。在字典的书写中使用花括号,并且它们包含键和值:键名可以用来引用字典对象。数据值以键:值对的形式保存在字典中。有序和无序含义当我们说字典是有序的时,我们是指其内容具有一定的顺序,不会改变。无序的项目缺乏明确的顺序,因此无法使用

空字典键不正确:如何解决Python的字典键错误?空字典键不正确:如何解决Python的字典键错误?Jun 24, 2023 pm 03:03 PM

Python中的字典是一种灵活而强大的数据结构,它可以存储键值对,并且具备快速的查找和插入功能。然而,如果不小心处理字典的键值对,可能会遇到空字典键的问题。这个问题通常会导致代码崩溃或输出非预期结果。本文将介绍两种解决Python空字典键错误的方法。方法一:使用if语句防止空字典键Python的字典中不能有重复键,否则会覆盖之前的键值对。当一个字典键的值为空

如何在Python中获取字典中的下一个键?如何在Python中获取字典中的下一个键?Aug 28, 2023 pm 11:45 PM

字典是Python强大的数据类型。它由键值对组成。通过这种数据类型可以有效地完成搜索、追加等操作。虽然访问字典中的值很简单,但在某些情况下您可能需要在字典中查找下一个键。Python提供了多种方法来实现此目的,具体取决于您的具体要求。在本文中,我们将探索在Python中获取字典中下一个键的不同方法。使用keys和index方法字典在Python中是无序集合。因此,我们首先需要将键转换为某种有序形式。我们可以先将所有键以列表的形式追加。接下来,我们可以通过索引列表来找到下一个键。借助键,我们还可以

详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

C++程序初始化字典C++程序初始化字典Sep 09, 2023 pm 07:01 PM

C++在同名的字典方面与Python不同,但它具有相似功能的相同数据结构。C++支持映射,可在STL类std::map中使用。映射对象在每个条目中包含一对值,一个是键值,另一个是映射值。键值用于在映射中搜索和唯一标识条目。而映射值不一定是唯一的,键值在映射中必须始终是唯一的。让我们看一下如何使用映射。首先,让我们看看如何在C++中定义一个映射数据结构。语法#includemap<data_type1,data_type2>myMap;让我们举个例子,看看如何做到这一点−示例#incl

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.