python中dict函数

Python dict()函数 (Python dict() function)

dict() function is a library function, it is used to create a dictionary with keywords( Ids) and values (s), it accepts a set of values with keywords, values and returns a dictionary.

dict()函数是一个库函数,用于创建带有关键字(Ids)和值(s)的字典,它接受带有关键字,值的一组值并返回字典。

Syntax:

句法:

    dict(keyword1=value1, keyword2=value2, ...)

Parameter(s): keyword1=value1, keyword2=value2, ... – a set of keywords and values to create a dictionary.

参数: keyword1 = value1,keyword2 = value2,... –用于创建字典的一组关键字和值。

Return value: dict – returns dictionary.

返回值: dict –返回字典。

Example:

例:

    Input:
# creating dictionary
std_info = dict(name = "Amit shukla", age = 21, course = "B.Tect (CS)")
# printing the value of dictionary
print("std_info:", std_info)
Output:
std_info: {'course': 'B.Tect (CS)', 'age': 21, 'name': 'Amit shukla'}

Python code to create a dictionary

用Python代码创建字典

# python code to demonstrate example of
# dict() number
# creating dictionary
std_info = dict(name = "Amit shukla", age = 21, course = "B.Tect (CS)")
# printing type
print("type of std_info: ", type(std_info))
# printing the value of dictionary
print("std_info:", std_info)

Output

输出量

type of std_info:  <class 'dict'>
std_info: {'course': 'B.Tect (CS)', 'age': 21, 'name': 'Amit shukla'}

翻译自: https://www.includehelp.com/python/dict-function-with-example.aspx

python中dict函数

python中dict函数_dict()函数以及Python中的示例相关推荐

  1. python中字典的常用函数_Python字典dict常用方法函数实例

    dict={'name':'Joe','age':18,'height':60} clear,清空 dict.clear() #运行结果{} pop,移除指定key的键值对并返回vlaue(如果没有该 ...

  2. python中list作为函数参数_在python中list作函数形参,防止被实参修改的实现方法

    0.摘要 我们将一个list传入函数后,函数内部对实参修改后,形参也会随之改变.本文将主要介绍这种错误的现象.原因和解决方法. 1.代码示例 def fun(inner_lst): inner_lst ...

  3. python中求和公式是什么函数_Python的math库中,用于求和的函数是( )。

    [单选题]确定兴利库容 V 兴 ,已知某水库为一回运用水库,其一次蓄水量为 V 1 =300 万 m 3 ,一次供水量为 V 2 =150 万 m 3 . [ ]. [单选题]hAB大于0说明B点的高 ...

  4. python中split的用法取第二个分片_python中split()函数的用法

    函数:split() Python中有split()和os.path.split()两个函数,具体作用如下: split():拆分字符串.通过指定分隔符对字符串进行切片,并返回分割后的字符串列表(li ...

  5. python 实例方法调用时可以忽略第一个参数_盘点Python中易忽略的函数

    Python 内置函数 1.ord() 函数是 chr() 函数(对于8位的ASCII字符串)或 unichr() 函数(对于Unicode对象)的配对函数,它以一个字符(长度为1的字符串)作为参数, ...

  6. Python中sort与sorted函数

    python中列表的内置函数sort()可以对列表中的元素进行排序,而全局性的sorted()函数则对所有可迭代的序列都是适用的: 并且sort()函数是内置函数,会改变当前对象,而sorted()函 ...

  7. python format函数实例_python中强大的format函数实例详解

    python中format函数用于字符串的格式化 自python2.6开始,新增了一种格式化字符串的函数str.format(),此函数可以快速处理各种字符串. 语法 它通过{}和:来代替%. 请看下 ...

  8. python items函数用法,Python中dictionary items()系列函数的用法实例

    本文实例讲述了Python中dictionary items()系列函数的用法,对Python程序设计有很好的参考借鉴价值.具体分析如下: 先来看一个示例: import html # availab ...

  9. python nums函数_Python中的内置函数

    Python中有很多内置函数,不需要我们调用模块可以直接使用,而且都是常用函数的封装,下面我们来看看Python中的内置函数都有那些. 1.abs() abs()是绝对值函数,把一个负数转化为正数,数 ...

最新文章

  1. Java变量和数据类型
  2. [LeetCode]: 53: Maximum Subarray
  3. 【顾连科普】健康生活的10个小常识,请收下
  4. Anaconda中快速安装Tensorflow与Keras并在pycharm中完成相应配置(win10cpu版)
  5. 边缘检测:Sobel、拉普拉斯算子
  6. Windows中各类画面源的截取和合成方法总结
  7. 题目 2055: 等待戈多(最短路)
  8. Jzoj5317 Func
  9. thinkphp6企业项目实战_[MarsZ]ThinkPHP项目实战总结
  10. 殊途同归? 亚马逊和微软都选了云业务老大当公司CEO
  11. 大数据之-Hadoop3.x_MapReduce_WordCount编写_Driver---大数据之hadoop3.x工作笔记0091
  12. rsa PHP用法,RSA常见用法整理
  13. Oracle数据库安装图文操作步骤
  14. 专卖店荣耀magicbookpro预装系统是Linux,换商家送的U盘里win10系统有影响吗?
  15. java中replaceall用法_Java中String的ReplaceAll使用小结
  16. c语言入门视频教程(C语言入门视频教程 百度网盘)
  17. SECS/GEM封装库金南瓜平台(一)简介
  18. java 数据内地地址_我国大陆居民×××Java验证
  19. 实验八 集成稳压器
  20. 推荐几款拍证件照的小程序

热门文章

  1. 用过的jQuery记录
  2. 构建前端自动化工作流环境
  3. Webpack 4进阶--从前的日色变得慢 ,一下午只够打一次包
  4. 响应式布局 max-device-width 与 max-width 的区别
  5. HDU3415 Max Sum of Max-K-sub-sequence
  6. Javascript学习之函数(function)
  7. css控制页面文字不能被选中user-select:none;
  8. Spring之HibernateTemplate 和HibernateDaoSupport
  9. 新风系统风速推荐表_新风系统风速标准及与噪音的关系
  10. 笔记本电脑怎么清理灰尘_手机声音越用越小怎么办?一段黑科技音波就能清理扬声器灰尘...