# coding:utf-8#JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。 defbuild_person(first_name,last_name,age=''):"""返回一个字典,其中包含有关个人的信息"""
person = {'first': first_name,'last':last_name,}
if age:
person['age'] = age
return person
musician = build_person('jimi','hendrix',27)
print(musician)