實現的功能**如下:
# 名字管理系統 列表的使用
prinwww.cppcns.comt("="*50)
print("1:新增名字")
print("2:修改名字")
print("3:查詢名字")
print("4:刪除名字")
print("5:退出")
print("="*50)
names =
while true:
num = int(input("請輸入要操作的序號:")) # input獲取到的是str,要轉換為int
if num == 1:
name_add = input("請輸入要新增的名字:")
names.append(name_add)
print(names)
elif num == 2:
name_edit1 = input("請輸入要修改的原始名字")
# 法一:
# if name_edit1 in names:
# for i in range(len(names)):
# if name_edit1 == names[i]:
# name_edit2 = input("請輸入要修改為的名字:")
# names[i] = name_edit2
# print("修改成功!")
# else:
# print("查無此人")
# 法二:
find_name = 0 # 預設沒找到
for i in range(len(names)):
if name_edit1 == names[i]:
name_edit2 = input("請輸入要修改為的名字:")
names[i] = name_edit2
print("修改成功!")
find_name = 1
if find_name = 0:
print("查無此人")
elif num == 3:
name_select = input("請輸入要查詢的名字:")
if name_select in names:
print("找到了要查詢的人")
else:
print("查無此人")
elif num == 4:
name_del = input("請輸入要進行刪除的名字:")
if name_del in names:
names.remove(name_del)
print("刪除成功!")
else:
print("查無此人,無法進行刪除")
elif num == 5:
break
else:
print("輸入錯誤!")
小編再為大家分享另一段用python中列表實現名字管理系統的**:
1、列印功能提示
2、獲取使用者輸入
3、根據使用者的輸入選擇相應的功能進行實現
#列印提示
print("="*50)
print("names_manage_systme")
print("1、add a new name")
print("2、delete a name")
print("3、modify a name")
print("4、search a name")
print("5、quit!")
print("="*50)
#儲存使用者姓名
names =
while true:
#獲取使用者輸入
user_input_num = int(input("please input the number you need:"))
#功能實現
if user_input_num == 1: #增加
new_name = input("please input the new name that you need to add:")
names.append(new_name)
print(names)
elif user_input_num == 2: #刪除
del_name = input("please input the new name that you need to delete:")
names.remove(del_name)
print(nawww.cppcns.commes)
elif user_input_num == 3: #改
modify_name = input("please input the new name that you need to modify:")
after_modify_name = input("please input the new name :")
length = len(names)
modify_name_index = 0
i = 0
while i < length:
if modify_name == names[i]:
modify_name_index = i
break
i += 1
names[modify_name_index] = after_modify_name
print(names)
elif user_input_www.cppcns.comnum == 4: #查詢
search_name = input("please input the new name that you need to search:")
length = len(names)
search_name_index = 0
i = 0
while i < length:
if search_name == names[i]:
search_name_index = i
break
i += 1
if i == length:
search_name_index = -1 #沒有找到的話令索引置為-1
print("the index of your search_name is:%d"%search_name_index)
elif user_input_num == 5: #退出
print("quit succes")
break
else:
print("input number wrong!\nplease input again")
本文標題: python列表使用實現名字管理系統
本文位址:
vue 多種方法實現名字拼接
第一種 v modal繫結 繫結keyup事件 實時更新 第二種 watch監聽 div input type text v model firstname input type text v model lastname input type text v model fullname div s...
python實現名片管理系統
project下有兩個python檔案 main.py和tool.py 1.main.py import tool while true tool.show menu action str input 您希望的操作 print 您選擇的操作是 s action str if action str i...
用python實現名片管理系統
python的基礎練習案例 名片管理系統,乙個控制台程式的案例練習,平台為pycharm2017。是看著python 學的時候寫的,pycharm執行沒有問題。系統需求 1 程式啟動,顯示名片管理系統歡迎介面,並顯示功能選單 歡迎使用 名片管理系統 v1.0 1 新建名片 2顯示全部 3查詢名片 0...