python实现在无须过多援引的情况下创建字典的方法


Posted in Python onSeptember 25, 2014

本文实例讲述了python实现在无须过多援引的情况下创建字典的方法。分享给大家供大家参考。具体实现方法如下:

1.使用itertools模块

import itertools
the_key = ['ab','22',33]
the_vale = ['aaaa',"dddddddd",'22222222222']
d = dict(itertools.izip(the_key,the_vale))
print d

2.加参数

dict = dict(red = 1,bule = 2,yellow = 3)
print dict

结果为:{'yellow': 3, 'bule': 2, 'red': 1}

3.使用内置的zip函数
zip([iterable,...])返回一个列表,

the_key = ['ab','22',33]
the_vale = ['aaaa',"dddddddd",'22222222222']
dict2 = dict(zip(the_key,the_vale))
print type(zip(the_key,the_vale))
print dict2

结果:

<type 'list'>
{33: '22222222222', 'ab': 'aaaa', '22': 'dddddddd'}

4.dict的fromkeys函数
创建的每个键有相同的value

fromkeys(seq[,value])
Create a new dictionary with keys from seq and values set to value.

the_key = ['ab','22',33]
the_vale = 0
d = dict.fromkeys(the_key,the_vale)
print

结果:{33: 0, 'ab': 0, '22': 0}

import string
count_by_letter = dict.fromkeys(string.ascii_lowercase,0)
print count_by_letter

结果:

{'a': 0, 'c': 0, 'b': 0, 'e': 0, 'd': 0, 'g': 0, 'f': 0, 'i': 0, 'h': 0, 'k': 0, 'j': 0, 'm': 0, 'l': 0, 'o': 0, 'n': 0, 'q': 0, 'p': 0, 's': 0, 'r': 0, 'u': 0, 't': 0, 'w': 0, 'v': 0, 'y': 0, 'x': 0, 'z': 0}

希望本文所述对大家Python程序设计的学习有所帮助。

Python 相关文章推荐
Python中3种内建数据结构:列表、元组和字典
Nov 30 Python
Python中关于字符串对象的一些基础知识
Apr 08 Python
python简单实现旋转图片的方法
May 30 Python
Django中的“惰性翻译”方法的相关使用
Jul 27 Python
python编程开发之类型转换convert实例分析
Nov 13 Python
MySQL中表的复制以及大型数据表的备份教程
Nov 25 Python
Python切片索引用法示例
May 15 Python
解决Pandas的DataFrame输出截断和省略的问题
Feb 08 Python
Python函数和模块的使用总结
May 20 Python
Python安装与基本数据类型教程详解
May 29 Python
Django文件存储 默认存储系统解析
Aug 02 Python
python 中Arduino串口传输数据到电脑并保存至excel表格
Oct 14 Python
python迭代器实例简析
Sep 25 #Python
Python中itertools模块用法详解
Sep 25 #Python
Python中unittest用法实例
Sep 25 #Python
跟老齐学Python之赋值,简单也不简单
Sep 24 #Python
跟老齐学Python之深入变量和引用对象
Sep 24 #Python
Python greenlet实现原理和使用示例
Sep 24 #Python
跟老齐学Python之数据类型总结
Sep 24 #Python
You might like
php 随机数的产生、页面跳转、件读写、文件重命名、switch语句
2009/08/07 PHP
PHP chmod 函数与批量修改文件目录权限
2010/05/10 PHP
从零开始学YII2框架(二)通过 Composer 安装扩展插件
2014/08/20 PHP
PHP中利用sleep函数实现定时执行功能实现代码
2016/08/25 PHP
php版微信发红包接口用法示例
2016/09/23 PHP
php实现将数据做成json的格式给前端使用
2018/08/21 PHP
struts2 jquery 打造无限层次的树
2009/10/23 Javascript
JavaScript prototype 使用介绍
2013/08/29 Javascript
Jquery 的outerHeight方法使用介绍
2013/09/11 Javascript
写得不错的jquery table鼠标经过变色代码
2013/09/27 Javascript
JS实现弹性漂浮效果的广告代码
2015/09/02 Javascript
关于Promise 异步编程的实例讲解
2017/09/01 Javascript
微信小程序实现多选框全选与反全选及购物车中删除选中的商品功能
2019/12/17 Javascript
python简单判断序列是否为空的方法
2015/06/30 Python
从CentOS安装完成到生成词云python的实例
2017/12/01 Python
Python从ZabbixAPI获取信息及实现Zabbix-API 监控的方法
2018/09/17 Python
OpenCV3.0+Python3.6实现特定颜色的物体追踪
2019/07/23 Python
pytorch数据预处理错误的解决
2020/02/20 Python
自定义实现 PyQt5 下拉复选框 ComboCheckBox的完整代码
2020/03/30 Python
Python如何操作office实现自动化及win32com.client的运用
2020/04/01 Python
Python列表去重复项的N种方法(实例代码)
2020/05/12 Python
如何基于matlab相机标定导出xml文件
2020/11/02 Python
CSS3中设置3D变形的transform-style属性详解
2016/05/23 HTML / CSS
美国批发零售网站:GearXS
2016/07/26 全球购物
聪明的粉丝购买门票的地方:TickPick
2018/03/09 全球购物
Tahari ASL官方网站:高级设计师女装
2021/03/15 全球购物
统计每一学生的平均成绩
2014/06/06 面试题
大学毕业生通用求职信
2013/09/28 职场文书
教师自荐信
2013/12/10 职场文书
淘宝店铺营销方案
2014/02/13 职场文书
党的群众路线个人对照检查材料
2014/09/23 职场文书
2015年师德师风自我评价范文
2015/03/05 职场文书
2015年业务工作总结范文
2015/04/10 职场文书
创业计划书之家教托管
2019/09/25 职场文书
2019年冬至:天冷暖人心的问候祝福语大全
2019/12/20 职场文书
python 使用tkinter与messagebox写界面和弹窗
2022/03/20 Python