list操作注意事項
list = [1,'str',]
for i list:
print(i)
list.clear() 清除
list.count() 計算個數
list.index('str') = 1 獲取str的索引位置
list.insert(0,99) 在0位置插入99,後面向後移位
v = list.pop(1) 刪除1位置的值,預設最後乙個,並返回給v
v = list.remove('str') 刪除某個值
v = list.sort(reverse=false) 排序 asc碼
list 操作
li[1] = 'str' 索引取值
li[0:2] 切片。結果是列表
for 迴圈和 while 迴圈
for i in li:
print(i)
index = 0
while index < len(li):
print(li[i])
index += 1
str = "fafsgdfagagf"
l = list(str) #字串轉換成列表
list = [str] #列表裡面有乙個字串元素
s = "".join(list) #字串轉換為列表,當且僅當list中只有字串
當列表裡面不是全為字串時
s = ""
for i in [1,2,3,'jessic']:
s = s + str(i)
print(s)
MySQL相關知識點整理
文章目錄 一 資料庫的三正規化 第一正規化 強調的是原子性,即資料庫表的每一列都是不可分割的原子資料項 第二正規化 要求實體的屬性完全依賴於主關鍵字。第三正規化 任何非主屬性不依賴於其它非主屬性。二 一張自增表裡面總共有 7 條資料,刪除了最後 2 條資料,重啟 mysql 資料庫,又插入了一條資料...
Python知識點整理
參考 python.doc 廖雪峰的python教程 使用 將兩行 為一行 if 1900 year 2100 and1 month 12 and1 day 31 and0 hour 24 and0 minute 60 and0 second 60 looks ike a valid date re...
python知識點整理
1 python列表和元祖 python包含6中內建的序列,即列表 元組 字串 unicode字串 buffer物件和xrange物件。通用序列操作 索引 分片 序列相加 乘法 成員資格 in 長度 len 最小值 min 和最大值 max 2 python字典 花括號 字典是另一種可變容器模型,且...