person['age'] = age
def build_person(first_name,last_name,age = None): #表示变量age没有值,None表示占位值."""返回一个字典,其中包含有关一个人的信息"""
person = {'first':first_name,'last': last_name}
if age: #None在条件语句中相当于false
person['age'] = age
return person
x = build_person('jimi','hendrix',age = 27)
print(x)
#运算结果:
#{'first': 'jimi', 'last': 'hendrix', 'age': 27}
(1)person['age'] = age,
age与["age"]分别代表着什么含义? 这一行代码是干嘛用的?{:10_282:} if age: 判断age是否为空,不为空时进入判断体,你前面赋值age。x = build_person('jimi','hendrix',age = 27)
person['age'] = age 是赋值的意思,在字典里添加age的keys,值为变量的age(age = 27)
整体意思就是,如果变量age不为空时,给字典person添加age的keys,值为变量age(age = 27)。把('jimi','hendrix',age = 27)三个值添加到字典里
最后返回字典person={'first': 'jimi', 'last': 'hendrix', 'age': 27}。 age: if age检测有没有传参进来
person['age'] = age: 在字典person里新建一个key,key为'age',值为传入的age实参。
页:
[1]