day03
Posted sunkd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day03相关的知识,希望对你有一定的参考价值。
def select(): print(‘select功能‘) def delete(): print(‘delete功能‘) def insert(): print(‘insert功能‘) def updata(): print(‘updata功能‘) dic = { ‘select‘:‘select‘, ‘delete‘:‘delete‘, ‘insert‘:‘insert‘, ‘updata‘:‘updata‘ } def main (): while True: inp=input(‘>>‘).strip() if not inp:continue for i in dic: if inp in i: inp() # if inp == ‘select‘: # select() # elif inp ==‘delete‘: # delete() # elif inp ==‘insert‘: # insert() # elif inp == ‘updata‘: # updata() # else: # print(‘输入有误.‘) # continue main()
以上是关于day03的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot项目SpringBoot项目-瑞吉外卖day03分类管理