Python数据类型详解(四)字典:dict
一.基本数据类型
整数:int
字符串:str(注:\t等于一个tab键)
布尔值: bool
列表:list
列表用[]
元祖:tuple
元祖用()
字典:dict
注:所有的数据类型都存在想对应的类列里,元祖和列表功能一样,列表可以修改,元祖不能修改。
二.字典所有数据类型:
常用操作:
索引、新增、删除、键、值、键值对、循环、长度
class dict(object): """ dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2) """ def clear(self): # real signature unknown; restored from __doc__ """ D.clear() -> None. Remove all items from D. """ pass def copy(self): # real signature unknown; restored from __doc__ """ D.copy() -> a shallow copy of D """ pass @staticmethod # known case def fromkeys(*args, **kwargs): # real signature unknown """ Returns a new dict with keys from iterable and values equal to value. """ pass def get(self, k, d=None): # real signature unknown; restored from __doc__ """ D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None. """ pass def items(self): # real signature unknown; restored from __doc__ """ D.items() -> a set-like object providing a view on D's items """ pass def keys(self): # real signature unknown; restored from __doc__ """ D.keys() -> a set-like object providing a view on D's keys """ pass def pop(self, k, d=None): # real signature unknown; restored from __doc__ """ D.pop(k[,d]) -> v, remove specified key and return the corresponding value. If key is not found, d is returned if given, otherwise KeyError is raised """ pass def popitem(self): # real signature unknown; restored from __doc__ """ D.popitem() -> (k, v), remove and return some (key, value) pair as a 2-tuple; but raise KeyError if D is empty. """ pass def setdefault(self, k, d=None): # real signature unknown; restored from __doc__ """ D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D """ pass def update(self, E=None, **F): # known special case of dict.update """ D.update([E, ]**F) -> None. Update D from dict/iterable E and F. If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k] """ pass def values(self): # real signature unknown; restored from __doc__ """ D.values() -> an object providing a view on D's values """ pass def __contains__(self, *args, **kwargs): # real signature unknown """ True if D has a key k, else False. """ pass def __delitem__(self, *args, **kwargs): # real signature unknown """ Delete self[key]. """ pass def __eq__(self, *args, **kwargs): # real signature unknown """ Return self==value. """ pass def __getattribute__(self, *args, **kwargs): # real signature unknown """ Return getattr(self, name). """ pass def __getitem__(self, y): # real signature unknown; restored from __doc__ """ x.__getitem__(y) <==> x[y] """ pass def __ge__(self, *args, **kwargs): # real signature unknown """ Return self>=value. """ pass def __gt__(self, *args, **kwargs): # real signature unknown """ Return self>value. """ pass def __init__(self, seq=None, **kwargs): # known special case of dict.__init__ """ dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2) # (copied from class doc) """ pass def __iter__(self, *args, **kwargs): # real signature unknown """ Implement iter(self). """ pass def __len__(self, *args, **kwargs): # real signature unknown """ Return len(self). """ pass def __le__(self, *args, **kwargs): # real signature unknown """ Return self<=value. """ pass def __lt__(self, *args, **kwargs): # real signature unknown """ Return self<value. """ pass @staticmethod # known case of __new__ def __new__(*args, **kwargs): # real signature unknown """ Create and return a new object. See help(type) for accurate signature. """ pass def __ne__(self, *args, **kwargs): # real signature unknown """ Return self!=value. """ pass def __repr__(self, *args, **kwargs): # real signature unknown """ Return repr(self). """ pass def __setitem__(self, *args, **kwargs): # real signature unknown """ Set self[key] to value. """ pass def __sizeof__(self): # real signature unknown; restored from __doc__ """ D.__sizeof__() -> size of D in memory, in bytes """ pass __hash__ = None
三.所有字典数据类型举例
user_info = { 0 :"zhangyanlin", "age" :"18", 2 :"pythoner" } #获取所有的key print(user_info.keys()) #获取所有的values print(user_info.values()) #获取所有的key和values print(user_info.items()) clear清除所有的内容 user_info.clear() print(user_info) #get 根据key获取值,如果key不存在,可以指定一个默认值 val = user_info.get('age') print(val) #update批量更新 test = { 'a':111, 'b':222 } user_info.update(test) print(user_info)
四.索引
#如果没有key,会报错 user_info = { "name" :'zhangyanlin', "age" :18, "job" :'pythoner' } print(user_info['name'])
五.for循环
#循环 user_info = { 0 :"zhangyanlin", "age" :"18", 2 :"pythoner" } for i in user_info: print(i) #循环输出所有的键入值 for k,v in user_info.items(): print(k) print(v)
以上就是本文的全部内容了,希望对大家熟练掌握Python数据结构能够有所帮助。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Developed by GudioVanRossum in 1991. It supports multiple programming paradigms, including structured, object-oriented, and functional programming. Before we dive into this topic, let's review the basic concepts relevant to the questions we provide. A dictionary is a unique, mutable, and ordered set of items. Curly braces are used when writing dictionaries, and they contain keys and values: key names can be used to refer to dictionary objects. Data values are stored in dictionaries in the form of key:value pairs. Ordered and unordered meaning When we say that a dictionary is ordered, we mean that its contents have a certain order and do not change. Unordered items lack a clear order and therefore cannot be used

The dictionary in Python is a flexible and powerful data structure that can store key-value pairs and has fast search and insertion functions. However, if you are not careful with dictionary key-value pairs, you may encounter the problem of empty dictionary keys. This problem often causes the code to crash or output unexpected results. This article will introduce two methods to solve the empty dictionary key error in Python. Method 1: Use if statements to prevent empty dictionary keys. Python dictionaries cannot have duplicate keys, otherwise the previous key-value pairs will be overwritten. When the value of a dictionary key is empty

Dictionaries are a powerful data type in Python. It consists of key-value pairs. Searching, appending and other operations can be efficiently completed through this data type. While accessing values in a dictionary is simple, there may be situations where you need to look up the next key in the dictionary. Python provides several ways to achieve this, depending on your specific requirements. In this article, we will explore different ways of getting the next key in a dictionary in Python. Using the keys and index methods dictionaries are unordered collections in Python. So we first need to convert the keys into some sorted form. We can first append all keys in the form of a list. Next, we can find the next key by indexing the list. With the help of keys we can also

C++ differs from Python in terms of a dictionary with the same name, but it has the same data structure with similar functionality. C++ supports mapping, which can be used in the STL class std::map. The map object contains a pair of values in each entry, one is the key value and the other is the map value. Key values are used to search for and uniquely identify entries in the map. While mapped values are not necessarily unique, key values must always be unique in the map. Let's take a look at how to use mapping. First, let's see how to define a mapped data structure in C++. Syntax #includemap<data_type1,data_type2>myMap; Let’s take an example to see how to do this − Example #incl

Python is a high-level programming language that is widely used in fields such as data science, machine learning, and artificial intelligence. Due to its easy-to-learn and easy-to-use nature, Python has become one of the most popular programming languages. However, like other programming languages, Python encounters various type errors when processing data. These errors may cause program execution to fail and, if not identified and resolved in time, will waste valuable developer time and resources. This article will introduce ways to solve Python data type errors. 1.Data type

Usage of dict function: 1. Initialize the dictionary using the "**kwarg" parameter; 2. Initialize the dictionary using the "mapping" parameter; 3. Initialize the dictionary using the "iterable" parameter; 4. Create an empty dictionary.

Dictionaries are known as collection data types. They store data in the form of key-value pairs. They are ordered and mutable, i.e. they follow a specific order and are indexed. We can change the value of a key so it is manipulable or changeable. Dictionaries do not support data duplication. Each key can have multiple values associated with it, but a single value cannot have multiple keys. We can perform many operations using dictionaries. The whole mechanism depends on the stored value. In this article, we will discuss the techniques you can use to remove "null values" from a dictionary. Before starting the main operation, we must have an in-depth understanding of value handling in dictionaries. Let’s take a quick overview of this article. This article is divided into two parts - Part 1st will focus on the concept of "null value" and its significance. In part 2nd

What are the methods for converting between dictionaries and JSON in Python? As a very commonly used data structure, dictionary is widely used in Python. JSON (JavaScriptObjectNotation), as a lightweight data exchange format, is also widely used in network data transmission and storage. In Python, converting between dictionaries and JSON is a common operation. This article will introduce several commonly used methods and attach corresponding code examples. square
