1. Python的参数传递是值传递还是引
举例说明Python函数参数传递的几种形式,并说明函数传参是值传递还是引用传递
一、位置参数
调用函数时根据函数定义的参数位置来传递参数。例子:
def print_hello(name, sex): sex_dict = {1: u‘先生‘, 2: u‘女士‘} print (‘hello %s %s, welcome to python world!‘ %(name, sex_dict.get(sex, u‘先生‘))) # 两个参数的顺序必须一一对应,且少一个参数都不可以print_hello(‘tanggu‘, 2)#输出:hello tanggu 女士, welcome to python world!
print_hello(‘tanggu‘, 3)#输出:hello tanggu 先生, welcome to python world!(字典中没有3的值,所以返回“先生”)
# 字典中get()用法:dict.get(key, default=None) #key -- 字典中要查找的键。default -- 如果指定键的值不存在时,返回该默认值值。
时间: 2024-10-08 20:40:02