python二级登陆菜单

Posted victorstudy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python二级登陆菜单相关的知识,希望对你有一定的参考价值。

"""
1.三级菜单 注册 登陆 注销
2.进入每一个一级菜单,都会有下一级的菜单

"""
user_item = dict()
try:
while True:
print(‘-------Welcome sir-------‘)
input_choice = int(input(‘Please enter your choice:1:Registration 2:login 3:logout:‘))
# 用户输入自己的选择,会进入到相关的二级菜单
if input_choice == 1:
# if input_choice==1 进入注册
user = input(‘Please enter your account number:‘)
pwd = input(‘please enter your password:‘)

# 保存用户注册的账号
user_item[‘user‘] = user
user_item[‘pwd‘] = pwd
# 提示用户注册成功
print(‘您的账号已生效,下次请用该账号:登陆本系统‘.format(user))

# if input_choice==2 进入登陆
elif input_choice == 2:
login_user = input(‘Please enter your login account number:‘)
login_pwd = input(‘please enter your login password:‘)

# 对用户输入的账号和密码进行确认
if login_user == user_item[‘user‘] and login_pwd == user_item[‘pwd‘]:
print(‘Welcome sir:‘.format(login_user))
else:
print(‘Sorry, your account or password is incorrect. Please confirm and come back‘)
# if input_choice == 3 进入注销
elif input_choice == 3:
logout_input = input(‘Do you really want to quit this system?,y or n‘)
if logout_input == ‘y‘:
break
elif logout_input == ‘n‘:
input_choice = int(input(‘Please enter your choice:1:Registration 2:login 3:logout:‘))
else:
print(‘Your input is incorrect‘)
except Exception as re:
print(re)
finally:
print(‘‘)

以上是关于python二级登陆菜单的主要内容,如果未能解决你的问题,请参考以下文章

Python+Selenium+Unittest编写超链接点击测试用例

Python语言基础练习题

全国计算机二级python考试学习信息 二级python考试练习习题 二级python考试资料 二级python资料大全 python等级考试资料 Python二级考试知识点 全国二级Python指南

经典的导航二级式导航菜单增强版

计算机二级python题库要钱吗

怎样找到二级Python的刷题工具