我是靠谱客的博主 哭泣鞋垫,最近开发中收集的这篇文章主要介绍找人程序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目内容:
有5名某界大佬xiaoyun、xiaohong、xiaoteng、xiaoyi和xiaoyang,其QQ号分别是88888、5555555、11111、12341234和1212121,用字典将这些数据组织起来。编程实现以下功能:用户输入某一个大佬的姓名后输出其QQ号,如果输入的姓名不在字典中则输出字符串“Not Found”。

程序框架如下:

def find_person(dict_users, strU):
if user is in the dict:
return user's QQ
else:
return 'Not Found'
if __name__ == "__main__":
create a dict named dict_users
strU =
input()
print(find_person(dict_users, strU))

输入格式:
字符串
输出格式:
字符串
输入样例:
xiaoyu
输出样例:
88888

调试结果:

def find_person(dict_users, strU):
if strU
in dict_users.keys():
return dict_users[strU]
else:
return 'Not Found'
if __name__ == "__main__":
dict_users={"xiaoyun":"88888","xiaohong":"5555555","xiaoteng":"11111","、xiaoyi":"12341234","xiaoyang":"1212121"}
strU =
input()
print(find_person(dict_users, strU))

最后

以上就是哭泣鞋垫为你收集整理的找人程序的全部内容,希望文章能够帮你解决找人程序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部