| |
|
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
| -> Python知识库 -> Python编程:从入门到实践 8-12 ~8-14 -> 正文阅读 |
|
|
[Python知识库]Python编程:从入门到实践 8-12 ~8-14 |
|
? #8-13 用户简介:复制前面的程序 user_profile.py,在其中调用 build_profile()来
#创建有关你的简介;调用这个函数时,指定你的名和姓,以及三个描述你的键?值对。
def build_profile(first, last, **user_info):
"""创建一个字典,其中包含我们知道的有关用户的一切"""
profile = {}
profile['first_name'] = first
profile['last_name'] = last
for key, value in user_info.items():
profile[key] = value
return profile
user_profile = build_profile('albert', 'einstein',
location='princeton',
field='physics')
print(user_profile)
personal_information = build_profile('liu','xing',
height = 175,
appearance = 'handsome',
voice = 'singing')
print(personal_information)
#8-14 汽车:编写一个函数,将一辆汽车的信息存储在一个字典中。这个函数总是接
#受制造商和型号,还接受任意数量的关键字实参。这样调用这个函数:提供必不可少的
#信息,以及两个名称—值对,如颜色和选装配件。这个函数必须能够像下面这样进行调用:
def car_information(manufacturer,model,**car_info):
carfile = {}
carfile['manufacturer'] = manufacturer
carfile['model'] = model
print(car_info.items())
for i , j in car_info.items():
carfile[i] = j
return carfile
car = car_information('dazhong','pasate',
color = 'bule',
seat = 'four')
print(car)
|
|
|
|
|
| 上一篇文章 下一篇文章 查看所有文章 |
|
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
| 360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年11日历 | -2025/11/30 9:02:08- |
|
| 网站联系: qq:121756557 email:121756557@qq.com IT数码 |