成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

python函數(shù)增刪改查 python中增刪改查

python list增刪改查怎么寫

python增加有兩個方法:append是往后面增加lidt.append(10),insert是可以插入的list.insert[1,78];

創(chuàng)新互聯(lián)主要從事成都網(wǎng)站制作、網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)南樂,10多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792

刪除使用del list[0]刪除第一個元素;

改的話就是重新賦值list[1]=12;

查就要循環(huán)了

fot i in list:

print(i)

python 操作 clickhouse 連接 增 刪 改 查

1.先導(dǎo)入clickhouse包:pip install clickhouse_driver

2.連接方式

1.查詢

2.插入

3.刪除

4.修改

python中列表的增刪改查

關(guān)于列表首先需要知道它是一系列按特定順序排列的元素組成

你可以創(chuàng)建包含字母表中所有字母、數(shù)字0至9或所有家庭成員姓名的列表;也可以將任何東西加入列表中,其中的元素之間可以沒有任何關(guān)系。鑒于列表通常包含多個元素,給列表指定一個表示復(fù)的名稱是個不錯的主意。

以下內(nèi)容是基于python來做列表的講解,主要講的是列表的增刪改查,包括哪些函數(shù)及例子,本次涉及的函數(shù)如下:

在實(shí)際的數(shù)據(jù)處理場景中,可以通過循環(huán),把每次循環(huán)的結(jié)果依次添加到列表中,便于我們處理數(shù)據(jù)。

List(列表) 是?Python?中使用? 最頻繁 ?的數(shù)據(jù)類型,在其他語言中通常叫做? 數(shù)組

列表有以下特性:

·? 專門用于存儲一串信息

· 用[ ]定義,數(shù)據(jù)之間用逗號(,)分隔

·? 索引從0開始

列表從0開始,如果超過索引值就會報錯:list index out of range

insert(0,8) 在索引為0的位置插入數(shù)字8?

append 在列表結(jié)尾插入數(shù)字8

append 在列表結(jié)尾插入新的列表,會出現(xiàn)數(shù)據(jù)不會依次加上,而是作為一個整體。

extend 在結(jié)尾插入別的列表的數(shù)據(jù),該函數(shù)可以解決添加列表數(shù)據(jù)的問題

注意使用 append 追加的是將后面的 列表作為一個整體追加到最后 ,而使用 extend 追加的是將里面的 元素依次追加到最后 。

del 列表[索引]:刪除指定索引元素

列表.remove(數(shù)據(jù)):刪除第一個數(shù)值

列表.pop():可指定索引刪除,不指定會刪除最后一個

列表.index(數(shù)據(jù)):查詢給定值的索引,即想要知道元素的位置,如果查詢元素有多個相同值只會返回第一個值出現(xiàn)的記錄

len(列表):有多少個元素

一個學(xué)校,有3個辦公室,現(xiàn)在有8位老師等待工位的分配,請編寫程序,完成隨機(jī)的分配,假設(shè)每個教室可以容納任意數(shù)量的教師

對列表for遍歷出來,找出我們需要的數(shù)值。

盡管?Python?的? 列表 ?中可以? 存儲不同類型的數(shù)據(jù)

但是在開發(fā)中,更多的應(yīng)用場景是

· 列表 ?一般只存儲 相同類型 的數(shù)據(jù)

·? 通過? for循環(huán) ,在循環(huán)體內(nèi)部,針對列表中的每一項元素,執(zhí)行相同的操作

python對數(shù)據(jù)庫表格里面的內(nèi)容增刪查改怎么寫

本文主要給大家介紹了關(guān)于python模擬sql語句對員工表格進(jìn)行增刪改查的相關(guān)內(nèi)容,分享出來供大家參考學(xué)習(xí),下面來一起看看詳細(xì)的介紹:

具體需求:

員工信息表程序,實(shí)現(xiàn)增刪改查操作:

可進(jìn)行模糊查詢,語法支持下面3種:

select name,age from staff_data where age 22 多個查詢參數(shù)name,age 用','分割

select * from staff_data where dept = 人事

select * from staff_data where enroll_date like 2013

查到的信息,打印后,最后面還要顯示查到的條數(shù)

可創(chuàng)建新員工紀(jì)錄,以phone做唯一鍵,phone存在即提示,staff_id需自增,添加多個記錄record1/record2中間用'/'分割

insert into staff_data values record1/record2

可刪除指定員工信息紀(jì)錄,輸入員工id,即可刪除

delete from staff_data where staff_id=5andstaff_id=10

可修改員工信息,語法如下:

update staff_table set dept=Market,phone=13566677787 where dept = 運(yùn)維 多個set值用','分割

使用re模塊,os模塊,充分使用函數(shù)精簡代碼,熟練使用 str.split()來解析格式化字符串

由于,sql命令中的幾個關(guān)鍵字符串有一定規(guī)律,只出現(xiàn)一次,并且有順序!!!

按照key_lis = ['select', 'insert', 'delete', 'update', 'from', 'into', 'set', 'values', 'where', 'limit']的元素順序分割sql.

分割元素作為sql_dic字典的key放進(jìn)字典中.分割后的列表為b,如果len(b)1,說明sql字符串中含有分割元素,同時b[0]對應(yīng)上一個分割元素的值,b[-1]為下一次分割對象!

這樣不斷迭代直到把sql按出現(xiàn)的所有分割元素分割完畢,但注意這里每次循環(huán)都是先分割后賦值!!!當(dāng)前分割元素比如'select'對應(yīng)的值,需要等到下一個分割元素

比如'from'執(zhí)行分割后的列表b,其中b[0]的值才會賦值給sql_dic['select'] ,所以最后一個分割元素的值,不能通過上述循環(huán)來完成,必須先處理可能是最后一個分割元素,再正常循環(huán)!!

在這sql語句中,有可能成為最后一個分割元素的 'limit' ,'values', 'where', 按優(yōu)先級別,先處理'limit' ,再處理'values'或 'where'.....

處理完得到sql_dic后,就是你按不同命令執(zhí)行,對數(shù)據(jù)文件的增刪改查,最后返回處理結(jié)果!!

示例代碼

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308

# _*_coding:utf-8_*_# Author:Jaye Heimport reimport os def sql_parse(sql, key_lis): ''' 解析sql命令字符串,按照key_lis列表里的元素分割sql得到字典形式的命令sql_dic :param sql: :param key_lis: :return: ''' sql_list = [] sql_dic = {} for i in key_lis: b = [j.strip() for j in sql.split(i)] if len(b) 1: if len(sql.split('limit')) 1: sql_dic['limit'] = sql.split('limit')[-1] if i == 'where' or i == 'values': sql_dic[i] = b[-1] if sql_list: sql_dic[sql_list[-1]] = b[0] sql_list.append(i) sql = b[-1] else: sql = b[0] if sql_dic.get('select'): if not sql_dic.get('from') and not sql_dic.get('where'): sql_dic['from'] = b[-1] if sql_dic.get('select'): sql_dic['select'] = sql_dic.get('select').split(',') if sql_dic.get('where'): sql_dic['where'] = where_parse(sql_dic.get('where')) return sql_dic def where_parse(where): ''' 格式化where字符串為列表where_list,用'and', 'or', 'not'分割字符串 :param where: :return: ''' casual_l = [where] logic_key = ['and', 'or', 'not'] for j in logic_key: for i in casual_l: if i not in logic_key: if len(i.split(j)) 1: ele = i.split(j) index = casual_l.index(i) casual_l.pop(index) casual_l.insert(index, ele[0]) casual_l.insert(index+1, j) casual_l.insert(index+2, ele[1]) casual_l = [k for k in casual_l if k] where_list = three_parse(casual_l, logic_key) return where_list def three_parse(casual_l, logic_key): ''' 處理臨時列表casual_l中具體的條件,'staff_id5'--['staff_id','','5'] :param casual_l: :param logic_key: :return: ''' where_list = [] for i in casual_l: if i not in logic_key: b = i.split('like') if len(b) 1: b.insert(1, 'like') where_list.append(b) else: key = ['', '=', ''] new_lis = [] opt = '' lis = [j for j in re.split('([=])', i) if j] for k in lis: if k in key: opt += k else: new_lis.append(k) new_lis.insert(1, opt) where_list.append(new_lis) else: where_list.append(i) return where_list def sql_action(sql_dic, title): ''' 把解析好的sql_dic分發(fā)給相應(yīng)函數(shù)執(zhí)行處理 :param sql_dic: :param title: :return: ''' key = {'select': select, 'insert': insert, 'delete': delete, 'update': update} res = [] for i in sql_dic: if i in key: res = key[i](sql_dic, title) return res def select(sql_dic, title): ''' 處理select語句命令 :param sql_dic: :param title: :return: ''' with open('staff_data', 'r', encoding='utf-8') as fh: filter_res = where_action(fh, sql_dic.get('where'), title) limit_res = limit_action(filter_res, sql_dic.get('limit')) search_res = search_action(limit_res, sql_dic.get('select'), title) return search_res def insert(sql_dic, title): ''' 處理insert語句命令 :param sql_dic: :param title: :return: ''' with open('staff_data', 'r+', encoding='utf-8') as f: data = f.readlines() phone_list = [i.strip().split(',')[4] for i in data] ins_count = 0 if not data: new_id = 1 else: last = data[-1] last_id = int(last.split(',')[0]) new_id = last_id+1 record = sql_dic.get('values').split('/') for i in record: if i.split(',')[3] in phone_list: print('\033[1;31m%s 手機(jī)號已存在\033[0m' % i) else: new_record = '%s,%s\n' % (str(new_id), i) f.write(new_record) new_id += 1 ins_count += 1 f.flush() return ['insert successful'], [str(ins_count)] def delete(sql_dic, title): ''' 處理delete語句命令 :param sql_dic: :param title: :return: ''' with open('staff_data', 'r', encoding='utf-8') as r_file,\ open('staff_data_bak', 'w', encoding='utf-8') as w_file: del_count = 0 for line in r_file: dic = dict(zip(title.split(','), line.split(','))) filter_res = logic_action(dic, sql_dic.get('where')) if not filter_res: w_file.write(line) else: del_count += 1 w_file.flush() os.remove('staff_data') os.rename('staff_data_bak', 'staff_data') return ['delete successful'], [str(del_count)] def update(sql_dic, title): ''' 處理update語句命令 :param sql_dic: :param title: :return: ''' set_l = sql_dic.get('set').strip().split(',') set_list = [i.split('=') for i in set_l] update_count = 0 with open('staff_data', 'r', encoding='utf-8') as r_file,\ open('staff_data_bak', 'w', encoding='utf-8') as w_file: for line in r_file: dic = dict(zip(title.split(','), line.strip().split(','))) filter_res = logic_action(dic, sql_dic.get('where')) if filter_res: for i in set_list: k = i[0] v = i[-1] dic[k] = v line = [dic[i] for i in title.split(',')] update_count += 1 line = ','.join(line)+'\n' w_file.write(line) w_file.flush() os.remove('staff_data') os.rename('staff_data_bak', 'staff_data') return ['update successful'], [str(update_count)] def where_action(fh, where_list, title): ''' 具體處理where_list里的所有條件 :param fh: :param where_list: :param title: :return: ''' res = [] if len(where_list) != 0: for line in fh: dic = dict(zip(title.split(','), line.strip().split(','))) if dic['name'] != 'name': logic_res = logic_action(dic, where_list) if logic_res: res.append(line.strip().split(',')) else: res = [i.split(',') for i in fh.readlines()] return res pass def logic_action(dic, where_list): ''' 判斷數(shù)據(jù)文件中每一條是否符合where_list條件 :param dic: :param where_list: :return: ''' logic = [] for exp in where_list: if type(exp) is list: exp_k, opt, exp_v = exp if exp[1] == '=': opt = '==' logical_char = "'%s'%s'%s'" % (dic[exp_k], opt, exp_v) if opt != 'like': exp = str(eval(logical_char)) else: if exp_v in dic[exp_k]: exp = 'True' else: exp = 'False' logic.append(exp) res = eval(' '.join(logic)) return res def limit_action(filter_res, limit_l): ''' 用列表切分處理顯示符合條件的數(shù)量 :param filter_res: :param limit_l: :return: ''' if limit_l: index = int(limit_l[0]) res = filter_res[:index] else: res = filter_res return res def search_action(limit_res, select_list, title): ''' 處理需要查詢并顯示的title和相應(yīng)數(shù)據(jù) :param limit_res: :param select_list: :param title: :return: ''' res = [] fields_list = title.split(',') if select_list[0] == '*': res = limit_res else: fields_list = select_list for data in limit_res: dic = dict(zip(title.split(','), data)) r_l = [] for i in fields_list: r_l.append((dic[i].strip())) res.append(r_l) return fields_list, res if __name__ == '__main__': with open('staff_data', 'r', encoding='utf-8') as f: title = f.readline().strip() key_lis = ['select', 'insert', 'delete', 'update', 'from', 'into', 'set', 'values', 'where', 'limit'] while True: sql = input('請輸入sql命令,退出請輸入exit:').strip() sql = re.sub(' ', '', sql) if len(sql) == 0:continue if sql == 'exit':break sql_dict = sql_parse(sql, key_lis) fields_list, fields_data = sql_action(sql_dict, title) print('\033[1;33m結(jié)果如下:\033[0m') print('-'.join(fields_list)) for data in fields_data: print('-'.join(data))

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對腳本之家的支持。

python中使用循環(huán)分別將小組成員姓名成績性別存放在個列表L1中,再將信息放入L中實(shí)現(xiàn)增刪改查排

使用 zip 函數(shù),然后將 zip 函數(shù)返回的每個元素轉(zhuǎn) list。

L_merge = [list(i) for i in zip(L1, L2, L3)]

新聞標(biāo)題:python函數(shù)增刪改查 python中增刪改查
文章路徑:http://jinyejixie.com/article24/dochsje.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、營銷型網(wǎng)站建設(shè)、品牌網(wǎng)站建設(shè)做網(wǎng)站、外貿(mào)建站品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)
寻乌县| 东莞市| 利津县| 玉屏| 永德县| 罗田县| 策勒县| 丰台区| 专栏| 阿拉善盟| 交口县| 孙吴县| 孙吴县| 拜城县| 遂溪县| 青冈县| 华阴市| 饶平县| 商水县| 开化县| 高邑县| 沁阳市| 敦化市| 中阳县| 韶山市| 萝北县| 丹巴县| 塔城市| 军事| 胶州市| 城固县| 阜城县| 河间市| 武鸣县| 贵南县| 阿荣旗| 启东市| 始兴县| 恩平市| 清新县| 北流市|