Please enable JavaScript.
Coggle requires JavaScript to display documents.
python證照 - Coggle Diagram
python證照
set (集合)
建立:set(變數)
注意
比大小
誰是誰的子集合或超集合
沒有順序概念
函式
元素
變數.remove
變數.add
檢查
元素 in set1
得到布林值
比大小
變數.issuperset(變數2)
變數是變數2的超集合?
subset
聯集
變數.union(變數2)
變數|變數2
交集
s1.intersection(s2)
s1 & s2
差集
s1.difference(s2)
s1-s2
對稱差集(彼此都沒有)
s1.symmetric_difference(s2)
s1^s2
字串
改變函數
每個空格後第一個字大寫
亂數.title()
亂數.swapcase()
亂數.replace(舊,新)
格式化
亂數.center(寬度)
亂數.rjust(寬度)
亂數.ljust(寬度)
列每行
while 行 n!=""
每次的 檔案.readline()會跳下一行
for 行 in 檔案
檔案處理
open("檔名","模式")
絕對路徑
r"地址","模式"
with open(檔名,模式) as 亂數
測試存在
import os.path
os.path.isfile("檔名")
功能
亂數.readline()
亂數.readlines()
for 行 in 檔案:
print(行)
tuple(數組)
建立: tuple(變數)
若要改變 要先變串列才能改
補充函數
自動排序
變數.sort()
對字串去掉空白
字典
查詢
變數.values()
變數.keys()
變數.items()
資料(代表key) in 變數
回傳布林直
改變
增加
變數[key]=value
ex. a["a"]="apple"
刪除
del 變數[key]
串列
刪除
del 索引
刪除第0個索引
亂數[:1]=[]