python 增刪改查

2021-09-19 17:09:08 字數 631 閱讀 8838

lists = ["aa","aa"]

#增lists.insert(0,"aa") #在索引為0的地方插入"aa"

lists.insert(5,"aa") #在索引為5的地方插入"aa",如果索引沒到5則插到尾部

#刪lists.remove("aa")# 刪除 第一遇到的"aa"從左向右

del lists[5] #刪除指定索引的值 如果索引超出範圍則報錯

lists.pop(0) #如果不輸入索引 預設刪除 最後乙個(索引為-1的值)

#改lists[1] = "bb" #把索引為1的值改為 "bb"

#查lists[0:]

lists[:]

lists #整個 列表

#這些索引都是左包括 右不包括

lists[-1] #索引為-1 的值也就是最後乙個 每個值有兩個索引 從前往後 0 ,1,2...

#從後往前...-3,-2,-1

lists[0:5] # 索引為 0,1,2,3,4 的值

lists[-3:-1] #索引為 -3,-2 的值 不可以寫成lists[-1:-3] 他從冒號前的那個數往右遍歷

lists[-3:] #索引為 -3,-2,-1 的值

Python 增刪改查

from pymysql import cursors from tools.config import config import random,string defcreatedatabase db config.db cur db.cursor cursor cursors.dictcurso...

Python的增刪改查

python coding utf 8 對列表的增刪改查 namelist 張三 里斯 王二 張三 查詢 print namelist 遍歷列表 for i in namelist print i 增加 names2 yasuo timo extend 將列表新增至另乙個列表的結尾 namelist...

mysql增刪改查效果 mysql增刪改查

檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...