# 一、數字 int# int() 可裝換為數字
# 二、字串 str
# replace # 替換
# find # 查詢
# join # 連線 "".join()
# split # 指定字元進行分離,預設空格
# strip # 去除左右空格,或指定字元
# startswith # 以什麼開頭
# endswith # 以什麼結尾
# upper # 轉換為大寫
# lower # 轉換為小寫
# format # "我是{}".format(qianx)
# template = 'i am ,age,'
# 方式一:
# v = template.format('qi', 19)
# 方式一:
# v2 = template.format(name='an', age=20)
# 方式一:
# v3 = template.format(**)
# 三、列表 list
# extend # 列表擴充套件 引數必須是可迭代物件,把每個元素 迴圈迭代加入到原來的列表中
# insert # 插入
# 索引、切片、迴圈
# 四、元組
# 忽略
# 索引、切片、迴圈 一級元素不能修改增加刪除
# 五、字典
# get # 根據key獲取值,key不存在時,返回none
# update # 更新
# keys # 所有key
# values # 所有value
# items # key和value
# for迴圈,索引(key)
# 六、布林值# 0 1
# bool()
# 假:
# node
# 0# 空字串:""
# 空列表:
# 空元組:()
# 空字典:{}
# false
# print() 列印引數說明:
常用集合整理筆記
1.集合 定義是乙個長度可變的容器 陣列是唯一的底層容器 只能儲存引用資料型別 儲存基本資料型別會自動裝箱變成包裝類物件.分類collection集合 單列集合 list集合 有序可重複 set集合 無序不可重複 map集合 單列集合 常用方法 add e add index,e 新增元素 remo...
python 常用函式整理
目錄 1.ceil 函式 2.類的定義 3.np.where 4.listdir 5.mean 6.split 功能 ceil 函式返回數字的上入整數 使用 imort math math.ceil x 例項 coding utf 8 import math this will import mat...
python 常用函式 整理
list.remove elem 移除第一找到的elem元素 list.pop 彈出乙個元素,返回該元素 list.pop index 1 移除列表中的乙個元素 list.extend seq 在列表末尾一次性追加另乙個序列中的多個值 用新列表擴充套件原來的列表 list.index obj 從列表...