Rumah > Artikel > pembangunan bahagian belakang > python fromkeys函数是什么?fromkeys函数的作用是什么?
这篇文章我们来学习一下关于python字典之中的python fromkeys函数的相关知识,fromkeys函数是什么意思,这个函数有什么作用都将会在接下来的文章之中得到解答。
描述
Python 字典 fromkeys() 函数用于创建一个新字典,以序列 seq 中元素做字典的键,value 为字典所有键对应的初始值。
语法
romkeys()方法语法:
dict.fromkeys(seq[, value])
参数
seq -- 字典键值列表。
value -- 可选参数, 设置键序列(seq)的值。
返回值
该方法返回一个新字典。
实例
以下实例展示了fromkeys()函数的使用方法:
# !/usr/bin/python # -*- coding: UTF-8 -*- seq = ('Google', 'Runoob', 'Taobao') dict = dict.fromkeys(seq) print "新字典为 : %s" % str(dict) dict = dict.fromkeys(seq, 10) print "新字典为 : %s" % str(dict)
以上实例输出结果为:
新字典为 : {'Google': None, 'Taobao': None, 'Runoob': None} 新字典为 : {'Google': 10, 'Taobao': 10, 'Runoob': 10}
以上就是这篇文章所讲的全部内容,python中字典内置的fromkeys函数。希望所说的内容以及所举的例子能对你有所帮助。
更多相关知识,请访问php中文网Python教程栏目。
Atas ialah kandungan terperinci python fromkeys函数是什么?fromkeys函数的作用是什么?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!