开发者学堂课程【Python入门 2020年版:显示用户功能实现】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/639/detail/10428
显示用户功能实现
内容介绍:
一.编写名片管理系统(查询用户)代码
二.运行结果
一.编写名片管理系统(查询用户)代码
Use list={
['name':'zhangsan','tel':'123','qq','321']
['name':'list','tel':'666','qq':'999'],
['name':'jack','tel':'888','qq':'233']
def add_user() :
def check_number(n):
if n.isdigit():
n=int(n)
if 0 <=n<len(user_list):return True
return False
def del_user():
del_ user():....
modify_ user():...
search_user():
search__name = input( '请输入要查询的姓名:')
for u in user_list:
if u['name'] == search_name:
print('查询到的信息如下:\n姓名:{name},
手机:{te1},QQ:{qq}'.format(**u))
else:
print('没有您要找的信息...')
def show_ all():
print(’序号 姓名 手机号 QQ'
for i, u in enumerate(user_list):
print(i, u['name'], u['tel'], u['qq'])
def exit_ system( ):
answer=input('亲, 你确定要退出么?~~~(>_ < )~~~(yes or no)')
return answer.lower( )='yes'
二.运行结果
名片管理系统V1.0
1:添加名片
2:删除名片
3:修改名片
4:查询名片
5:显示所有名片
6:退出系统
请输入要进行的操作(数字):4
请输入要查询的姓名:zhangsan
查询到的信息如下: τ
姓名:zhangsan,手机:123,QQ:321
没有您要找的信息....
名片管理系统V1.0
1:添加名片
2:删除名片
3:修改名片
4:查询名片
5:显示所有名片
6:退出系统