IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python基础学习-09 -> 正文阅读

[Python知识库]Python基础学习-09

Python基础学习-09

# Python dict
dictionary = {
    "name": "Jone",
    "age": 15,
    "numbers": "138123456"
}
print(dictionary)
# 字典是有序的、可变的,并且不允许重复。字典项以键值对的形式呈现,可以使用键名进行引用
print(dictionary["name"])
# 字典内的重复值将覆盖现有值

# the dict len
print(len(dictionary))
# 字典内的值可以是任何数据类型
print(type(dictionary))

"""
1. List 是一个有序且可变的集合。允许重复成员。
2. 元组 是一个有序且不可更改的集合。允许重复成员。
3. Set 是一个无序且无索引的集合。没有重复的成员。
4. 字典 是一个有序且可变的集合。没有重复的成员。
"""
# 访问
test = {
    "name": "七七",
    "age": 19,
    "address": "Inner Mongolia"
}
x = test["name"]
print(x)
y = test.get('name')
print(x, y)

# 访问键值
x = test.keys()
print(x)
test['age'] = 20
print(test)
x = test.values()
print(x)
test['name'] = "77"
print(test)
# 返回字典的每个项目
x = test.items()
print(x)

test = {
    "name": 77,
    "age": 19,
}
if 'name' in test:
    print("name在字典内")
# change
test = {
    "name": "七七",
    "age": 19,
    "address": "Inner Mongolia"
}
print(test)
test['age'] = 20
print(test)
test.update({"age": 25})
print(test)
# add
test = {
    "name": "七七",
    "age": 19,
    "address": "Inner Mongolia"
}
print(test)
test["sex"] = "男"
print(test)
test.update({"weight": 53})
print(test)
# Del
test.pop("sex")
print(test)
test.popitem()
print(test)
del test['age']
print(test)

del test
test = {
    "name": "七七",
    "age": 19,
    "address": "Inner Mongolia"
}
test.clear()
print(test)

# traverse
test = {
    "name": "七七",
    "age": 19,
    "address": "Inner Mongolia"
}
for x in test:
    print(x)

for x in test:
    print(test[x])

for x in test.values():
    print(x)

for x in test.keys():
    print(x)

for x, y in test.items():
    print(x, y)

# copy
temp = test.copy()
print(temp)

tmp = dict(test)
print(tmp)

# nest (嵌套)
family = {
    "father": {
        "name": "Tom",
        "age": "18",
        "years": "2001"
    },
    "mother": {
        "name": "Amin",
        "age": "20",
        "years": "2002"
    },
    "child": {
        "name": "Jery",
        "age": "15",
        "years": "2015"
    }
}
print(family)
child1 = {
    "name": "Emil",
    "year": 2004
}
child2 = {
    "name": "Tobias",
    "year": 2007
}
child3 = {
    "name": "Linus",
    "year": 2011
}

family = {
    "child1": child1,
    "child2": child2,
    "child3": child3
}
print(family)
# test
# 1-使用gCet方法打印汽车字典的“model”键的值。
car ={
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
print(car["model"])
# 2-将“year”值从 1964 更改为 2020。
car ={
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
print(car)
car["year"] = 2020
print(car)
# 3-将键/值对 “color” : “red” 添加到汽车字典中。
car =	{
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
car.update({"color": "red"})
print(car)
# 4-使用 pop 方法从汽车字典中删除“model”。
car =	{
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
car.pop("model")
print(car)
# 5-使用clear方法清空car字典。
car =	{
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
car.clear()
print(car)
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-11-28 11:13:24  更:2021-11-28 11:14:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 2:29:03-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码