Python中的字典与成员运算符初步探究
作者:goldensun 时间:2023-01-28 09:59:18
Python元字典
字典(dictionary)是除列表以外python之中最灵活的内置数据结构类型。列表是有序的对象结合,字典是无序的对象集合。
两者之间的区别在于:字典当中的元素是通过键来存取的,而不是通过偏移存取。
字典用"{ }"标识。字典由索引(key)和它对应的值value组成。
#!/usr/bin/python
# -*- coding: UTF-8 -*-
dict = {}
dict['one'] = "This is one"
dict[2] = "This is two"
tinydict = {'name': 'john','code':6734, 'dept': 'sales'}
print dict['one'] # 输出键为'one' 的值
print dict[2] # 输出键为 2 的值
print tinydict # 输出完整的字典
print tinydict.keys() # 输出所有键
print tinydict.values() # 输出所有值
输出结果为:
This is one This is two {'dept': 'sales', 'code': 6734, 'name': 'john'} ['dept', 'code', 'name'] ['sales', 6734, 'john']
Python成员运算符
除了以上的一些运算符之外,Python还支持成员运算符,测试实例中包含了一系列的成员,包括字符串,列表或元组。
以下实例演示了Python所有成员运算符的操作:
#!/usr/bin/python
a = 10
b = 20
list = [1, 2, 3, 4, 5 ];
if ( a in list ):
print "Line 1 - a is available in the given list"
else:
print "Line 1 - a is not available in the given list"
if ( b not in list ):
print "Line 2 - b is not available in the given list"
else:
print "Line 2 - b is available in the given list"
a = 2
if ( a in list ):
print "Line 3 - a is available in the given list"
else:
print "Line 3 - a is not available in the given list"
以上实例输出结果:
Line 1 - a is not available in the given list
Line 2 - b is not available in the given list
Line 3 - a is available in the given list
标签:Python
0
投稿
猜你喜欢
开发人员一定要加入收藏夹的网站 推荐
2023-09-14 23:24:43
js字放大效果
2010-09-07 12:18:00
JavaScript 数据结构之集合创建(1)
2024-04-19 10:14:34
Python爬虫获取基金变动信息
2022-08-15 21:57:15
MySQL运行状况查询方式介绍
2024-01-26 03:54:52
简单谈谈MySQL的半同步复制
2024-01-15 01:04:50
解决keras backend 越跑越慢问题
2022-05-27 17:36:58
关于Python下载大文件时哪种方式速度更快
2021-03-15 05:46:37
python采用getopt解析命令行输入参数实例
2022-05-10 11:08:00
一文搞懂SQL注入攻击
2024-01-17 05:50:11
Python使用tkinter模块实现推箱子游戏
2022-12-06 08:27:49
JavaScript中使用ActiveXObject操作本地文件夹的方法
2024-04-17 09:48:32
详解Python传入参数的几种方法
2023-02-05 15:37:28
对pandas写入读取h5文件的方法详解
2021-01-10 09:11:18
OpenCV图像处理GUI功能详解
2021-01-26 15:55:34
python+mysql实现教务管理系统
2024-01-26 11:43:03
Perl操作系统环境变量的脚本代码
2022-12-27 12:17:22
微信小程序页面向下滚动时tab栏固定页面顶部实例讲解
2024-05-02 17:07:18
MySQL学习第五天 MySQL数据库基本操作
2024-01-28 19:17:58
golang cache带索引超时缓存库实战示例
2023-07-24 04:43:11