用python實現寵物管理系統

2021-08-29 07:53:05 字數 1365 閱讀 1582

pets =   #全域性變數

def add_pet():

id = input("請輸入寵物編號:")

name = input("請輸入寵物名稱:")

category = input("請輸入寵物種類:")

price = input("請輸入寵物**:")

pet =

print("恭喜寵物新增成功!")

def search_pet():

name = input("請輸入寵物名稱:")

for pet in pets:

if pet['name'] ==name:

text = "編號:{},名稱:{},種類:{},**:{}".format(

pet['id'],

pet['name'],

pet["category"],

pet['price']

)print(text)

def delete_pet():

id = input("請輸入寵物編號:")

for pet in pets:

if pet['id'] == id:

pets.remove(pet)

print("刪除寵物成功!")

break

def list_pet():

for pet in pets:

text = "編號:{},名稱:{},種類:{},**:{}".format(

pet['id'],

pet['name'],

pet["category"],

pet['price']

)print(text)

def main():

print('='*30)

print('1.新增寵物')

print('2.查詢寵物')

print('3.刪除寵物')

print('4.列出寵物')

print('5.退出寵物')

print('='*30)

while true:

option = input("請輸入選項:")

if option == '1':

add_pet()

elif option == '2':

search_pet()

elif option == '3':

delete_pet()

elif option == '4':

list_pet()

elif option == '5':

break

else:

print("請輸入正確的選項")

main()

用Python實現學生管理系統

實現簡單的學生管理系統 import os,pickle stu dic filename stu inf.txt class student def init self,name,age,stu id,gender self.name name self.age age self.stu id s...

用python實現名片管理系統

python的基礎練習案例 名片管理系統,乙個控制台程式的案例練習,平台為pycharm2017。是看著python 學的時候寫的,pycharm執行沒有問題。系統需求 1 程式啟動,顯示名片管理系統歡迎介面,並顯示功能選單 歡迎使用 名片管理系統 v1.0 1 新建名片 2顯示全部 3查詢名片 0...

Python實現桌面寵物

基於pyqt5 import os import cfg import sys import random from pyqt5.qtgui import from pyqt5.qtcore import from pyqt5.qtwidgets import from pyqt5 import q...