一起學python 4 小總結
阿新 • • 發佈:2018-12-31
小結小程式
wel = '員工管理系統' show_wel = wel.center(60, '=') print(show_wel) emps = ['麗麗\t22\t女\t天堂', '小王\t23\t男\t人間'] while True: print('請選擇你要的操作:') print('\t1.查詢員工') print('\t2.新增員工') print('\t3.刪除員工') print('\t4.退出系統') choose = input('請選擇:') print('-' * 80) if choose == '1': print('\t序號\t姓名\t年齡\t性別\t住址') n = 1 for emp in emps: print(f'\t{n}\t{emp}') n += 1 palyer = input('退出請按x,繼續請按c') if palyer == 'x': break else: pass elif choose == '2': a = input('請輸入員工姓名:') b = input('請輸入員工年齡:') c = input('請輸入員工性別:') d = input('請輸入員工地址:') plus = [f'{a}\t{b}\t{c}\t{d}'] palyer = input('確認新增請按x,返回請按c') if palyer == 'x': emps += plus print(f'{a}錄入成功!') else: pass elif choose == '3': del_sta = int(input('請輸入要刪除員工序號:')) if 0 < del_sta <= len(emps): del_emps = del_sta - 1 print(f'確認刪除{del_sta}號員工請按x,返回請按c') delt = input() if delt == 'x': emps.pop(del_emps) else: pass else: print('你的輸入有誤!') elif choose == '4': print('歡迎使用,再見。') input('回車鍵退出。') break else: print('你輸入有誤,請重新輸入!') print('-' * 80)