真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python怎么編寫通訊錄通過數(shù)據(jù)庫存儲實現(xiàn)模糊查詢功能

這篇“Python怎么編寫通訊錄通過數(shù)據(jù)庫存儲實現(xiàn)模糊查詢功能”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Python怎么編寫通訊錄通過數(shù)據(jù)庫存儲實現(xiàn)模糊查詢功能”文章吧。

創(chuàng)新互聯(lián)建站是一家專注于成都網(wǎng)站設(shè)計、成都做網(wǎng)站與策劃設(shè)計,茂南網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)10年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:茂南等地區(qū)。茂南做網(wǎng)站價格咨詢:18980820575

1.要求

數(shù)據(jù)庫存儲通訊錄,要求按姓名/電話號碼查詢,查詢條件只有一個輸入入口,自動識別輸入的是姓名還是號碼,允許模糊查詢。

2.實現(xiàn)功能

可通過輸入指令進行操作。

(1)首先輸入“add”,可以對通訊錄進行添加聯(lián)系人信息。

sql1 =
'insert into TA(ID,NAME,AGE,ADDRESS,TELENUMBER)'
sql1 += 'values("%d","%s","%d","%s","%s");' % (ID,name, age, address, telenumber)
conn.execute(sql1)
conn.commit() # 提交,否則無法保存

(2)輸入“delete”,可以刪除指定的聯(lián)系人信息。

輸入姓名刪除:

cursor = c.execute( "SELECT name from TA where name = '%s';" %i)

輸入電話號碼刪除:

cursor = c.execute( "SELECT name from TA where telenumber= '%s';" % i)

(3)輸入“search”,可以輸入聯(lián)系人或者電話號碼,查詢聯(lián)系人信息,這里實現(xiàn)了模糊查詢以及精確查詢。

輸入姓名查詢:

sql1 = "SELECT id,name,age, address, telenumber from TA where telenumber like '%" + i +
"%'"
cursor = c.execute(sql1)

輸入電話號碼查詢:

sql1= "SELECT id,name,age, address, telenumber from TA where name like '%" +i+
"%'"
cursor = c.execute(sql1)

(4)輸入“searchall”,查詢?nèi)柯?lián)系人信息。

cursor = c.execute( "SELECT id, name, age, address, telenumber from TA" )

3.數(shù)據(jù)庫sqlite3

Python自帶一個輕量級的關(guān)系型數(shù)據(jù)庫sqlite。這一數(shù)據(jù)庫使用SQL語言。sqlite作為后端數(shù)據(jù)庫,可以搭配Python建網(wǎng)站,或者制作有數(shù)據(jù)存儲需求的工具。sqlLite還在其它領(lǐng)域有廣泛的應(yīng)用,比如HTML5和移動端。Python標準庫中的sqlite3提供該數(shù)據(jù)庫的接口。因此此次使用了sqlite3數(shù)據(jù)庫存儲通訊錄的聯(lián)系人信息。

源碼:

import sqlite3
import re
#打開本地數(shù)據(jù)庫用于存儲用戶信息
conn = sqlite3.connect('MySQL_telephone_book.db')
c = conn.cursor()
#在該數(shù)據(jù)庫下創(chuàng)建表,創(chuàng)建表的這段代碼在第一次執(zhí)行后需要注釋掉,否則再次執(zhí)行程序會一直提示:該表已存在
'''c.execute("CREATE TABLE TA
    (ID INT PRIMARY KEY   NOT NULL,
    NAME      TEXT  NOT NULL,
    AGE      INT   NOT NULL,
    ADDRESS    CHAR(50),
    TELENUMBER     TEXT);")'''

conn.commit()#提交當前的事務(wù)
#增加用戶信息
def insert():
  global conn
  c = conn.cursor()
  ID=int(input("請輸入id號:"))
  name=input("請輸入姓名:")
  age=int(input("請輸入年齡:"))
  address=input("請輸入地址:")
  telenumber=input("請輸入電話號碼:")
  sql1 = 'insert into TA(ID,NAME,AGE,ADDRESS,TELENUMBER)'
  sql1 += 'values("%d","%s","%d","%s","%s");' % (ID,name, age, address, telenumber)
  conn.execute(sql1)
  conn.commit()#提交,否則無法保存
  print("提交成功??!")
#刪除用戶信息
def delete():
  global conn
  c=conn.cursor()
  i = input("請輸入所要刪除的聯(lián)系人姓名或電話號碼:")
  if len(i) < 11:
    cursor = c.execute("SELECT name from TA where name = '%s';"%i)
    for row in cursor:
      if i == row[0]:
        c.execute("DELETE from TA where name ='%s';"%i)
        conn.commit()
        print("成功刪除聯(lián)系人信息!!")
        break
    else:
      print("該聯(lián)系人不存在??!")
  else :
    cursor = c.execute("SELECT name from TA where telenumber= '%s';" % i)
    for row in cursor:
      if i == row[0]:
        c.execute("DELETE from TA where telenumber ='%s';" % i)
        conn.commit()
        print("成功刪除聯(lián)系人信息??!")
        break
    else:
      print("該電話號碼錯誤??!")
#查詢用戶信息
def search():
  global conn
  c = conn.cursor()
  i = input("請輸入所要查詢的聯(lián)系人姓名或電話號碼:")
  if i.isnumeric():
    sql1 = "SELECT id,name,age, address, telenumber from TA where telenumber like '%" + i + "%'"
    cursor = c.execute(sql1)
    res=cursor.fetchall()
    if len(res)!=0:
      for row in res:
        print("id:{0}".format(row[0]))
        print("姓名:{0}".format(row[1]))
        print("年齡:{0}".format(row[2]))
        print("地址:{0}".format(row[3]))
        print("電話號碼:{0}".format(row[4]))
    else:
      print("無此電話號碼?。?)
  else:
    sql1="SELECT id,name,age, address, telenumber from TA where name like '%"+i+"%'"
    cursor = c.execute(sql1)
    res=cursor.fetchall()
    if len(res) == 0:
      print("該聯(lián)系人不存在??!")
    else:
      for row in res:
        print("id:{0}".format(row[0]))
        print("姓名:{0}".format(row[1]))
        print("年齡:{0}".format(row[2]))
        print("地址:{0}".format(row[3]))
        print("電話號碼:{0}".format(row[4]))
#顯示所有用戶信息
def showall():
  global conn
  c = conn.cursor()
  cursor = c.execute("SELECT id, name, age, address, telenumber from TA")
  for row in cursor:
    print("id:{0}".format(row[0]))
    print("姓名:{0}".format(row[1]))
    print("年齡:{0}".format(row[2]))
    print("地址:{0}".format(row[3]))
    print("電話號碼:{0}".format(row[4]))
print("指令如下:\n1.輸入\"add\"為通訊錄添加聯(lián)系人信息\n2.輸入\"delete\"刪除通訊錄里的指定聯(lián)系人信息 \n3.輸入\"searchall\"查詢通訊錄里的所有用戶 \n4.輸入\"search\"根據(jù)姓名或手機號碼查找信息 ")
while 1:
  temp = input("請輸入指令:")
  if temp == "add":
    insert()
    print("添加成功!")
    temp1=input("是否繼續(xù)操作通訊錄?(y or n)")
    if temp1=="n":
      print("成功退出??!")
      break
    else:
      continue
  elif temp=="delete":
    delete()
    temp1 = input("是否繼續(xù)操作通訊錄?(y or n)")
    if temp1 == "n":
      print("成功退出??!")
      break
    else:
      continue
  elif temp=="searchall":
    showall()
    temp1 = input("是否想繼續(xù)操作通訊錄?(y or n)")
    if temp1 == "n":
      print("成功退出?。?)
      break
    else:
      continue
  elif temp=="search":
    search()
    temp1 = input("您是否想繼續(xù)操作通訊錄?(y or n)")
    if temp1 == "n":
      print("成功退出!!")
      break
    else:
      continue
  else:
    print("請輸入正確指令!!")
conn.close()#關(guān)閉數(shù)據(jù)庫

以上就是關(guān)于“Python怎么編寫通訊錄通過數(shù)據(jù)庫存儲實現(xiàn)模糊查詢功能”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)站欄目:Python怎么編寫通訊錄通過數(shù)據(jù)庫存儲實現(xiàn)模糊查詢功能
轉(zhuǎn)載注明:http://weahome.cn/article/gjcsso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部