三、定义查询函数 我们接下来定义一个函数get_destination_info(destination),该函数接受一个目的地名称,并返回相关信息。 defget_destination_info(destination):# 从字典中获取目的地的信息info=tourist_destinations.get(destination)# 检查目的地是否存在ifinfo:returnf"目的地:{destination}\n活动:{', '.join(info...
dict_name.copy() # 返回一个字典的浅复制(浅复制不懂什么意思,就跟print()一样,输入这个字典的key-value对的值) dict.fromkeys(seq, val) # 创建一个新字典,以序列seq中元素做字典的键,val为字典所有键对应的初始值(可以为空) dict_name.clear() # 删除字典内所有元素,括号里无参数 dict1={1:'a',...
在python3中可以采用如下方法: 函数(*(元组)) 函数(**{字典}) 如下例子: function(*("whither", "canada?")) 元组 function(*(1, 2 + 3)) 元组 function(**{"a": "crunchy", "b": "frog"}) 字典 在python2中,可以使用apply来实现 def function(a, b): print a, b apply(function, ("whi...
报错信息提示 TypeError: 'function' object is not subscriptable 函数不能进行[] 运算,函数是用() ...