99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀Python基于列表list實(shí)現(xiàn)的CRUD操作功能示例
Python基于列表list實(shí)現(xiàn)的CRUD操作功能示例
2018-03-22
收藏

Python基于列表list實(shí)現(xiàn)的CRUD操作功能示例

本文實(shí)例講述了Python基于列表list實(shí)現(xiàn)的CRUD操作功能。分享給大家供大家參考,具體如下:

本篇文章看之前你的先了解python 基礎(chǔ)的知識點(diǎn),比如控制流,變量,數(shù)據(jù)類型,list,元組,字典 基本操作,該文章主要的目的還是鞏固python的基礎(chǔ),所以如果沒有了解的python的同學(xué)建議先了解基礎(chǔ),再閱讀該文,當(dāng)然有編寫不好的地方多多送鮮花和掌聲。廢話不多說先了解需求

需求如下:

1. 界面列表

歡迎來到用戶管理系統(tǒng)
        1添加用戶
        2刪除用戶
        3修改用戶
        4查詢用戶
        5退出

2. 刪除,修改,查詢,分別根據(jù)id來操作
3. 沒有刪除,修改,查詢的項(xiàng),給出相應(yīng)的提示,操作的結(jié)果給出相提示
4. 初始化3個(gè)用戶
5. 用戶有屬性id,name,password,分別用3個(gè)列表來保存數(shù)據(jù)

代碼如下:

#用戶管理系統(tǒng)
# 初始化3個(gè)用戶
ids=['1','2','3']
names=['張三','李四','王武']
pws=['root','abc123','123456']
# 創(chuàng)建菜單
print("===歡迎來到用戶管理系統(tǒng)===")
print("1 添加用戶")
print("2 刪除用戶")
print("3 修改用戶")
print("4 查詢用戶")
print("5 退出")
type=int(input("請選擇:"))
whiletype>=1andtype<=5:
  iftype==1:
    id=input("請輸入用戶的id:")
    name=input("請輸入用戶的名字:")
    pw=input("請輸入用戶密碼:")
    ids.append(id)
    names.append(name)
    pws.append(pw)
    print("添加成功!")
  eliftype==2:
    #判斷用戶是否在ids存在
    id=input("請輸入用戶的id:")
    ifidinids:
      #獲取下標(biāo)值
      index=ids.index(id)
      ids.pop(index)
      names.pop(index)
      pws.pop(index)
      print("刪除成功")
    else:#沒有找到用戶給出提示
      print("沒有找到刪除的用戶!")
  eliftype==3:
    #判斷用戶是否在ids存在
    id=input("請輸入用戶的id:")
    ifidinids:
      #獲取下標(biāo)值
      index=ids.index(id)
      names[index]=input("請輸入用戶的名字:")
      pws[index]=input("請輸入用戶的密碼:")
      print("修改成功")
    else:#沒有找到用戶給出提示
      print("沒有找到修改的用戶!")
  eliftype==4:
    #判斷用戶是否在ids存在
    id=input("請輸入用戶的id:")
    ifidinids:
      #獲取下標(biāo)值
      index=ids.index(id)
      print("用戶的id:",ids[index])
      print("用戶名字:",names[index])
      print("用戶密碼:",pws[index])
    else:#沒有找到用戶給出提示
      print("沒有查詢到用戶!")
  eliftype==5:
    break
  type=int(input("請選擇:"))
else:
  print("輸入有誤!")
當(dāng)然這邊是簡單的版本,以后會更新面向?qū)ο蟀姹竞蚷o的版本

數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個(gè)參數(shù)驗(yàn)證碼對象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個(gè)配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時(shí)表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時(shí)完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }