Excel條件式格式設定,編輯自訂清單 by 儲蓄保險王 · 2022-04-06 Excel條件式格式設定 用參數1標示星期六日: 用參數2標示星期六日: 其他月份用選擇性貼上 貼上 > 格式 編輯自訂清單: 以月填滿: 組成群組 樞紐分析表: 加總可以拉兩次 其中一個顯示總計百分比 插入篩選器 插入交叉分析篩選器 相關文章Python逐位元運算(bitwise operation),或or | , 且and & , 互斥或xor ^ , 反向~ ;位元左移 x << y => 效果同x*(2**y) ; 位元右移 x>>1 => 效果同x//2;x>>16效果同 x//(2**16)Python GUI: tkinter中.get()與.cget()的差別為何? #configuration ; entry_widget.get() ; label_widget.cget("text") ; label_widget = tk.Label( window, text = "Hello, World!")Python TQC考題905 字串資料刪除,datanew=data.replace(strold,strnew), f.write(datanew)Python: matplotlib繪圖, ax.plot (pandas.Series, pandas.DataFrame) 一次畫出多條折線圖; fig, ax = plt.subplots() #一次創建fig, ax兩個物件 ; fig = plt.figure() ; ax = fig.add_subplot(1, 1, 1) #fig, ax 分兩次建立 ; ax = df.plot()Python 實戰:別再搞混 isinstance 與 issubclass —以 python-docx 為例; 比 issubclass 更誠實的族譜 — 深入 mro() #Method Resolution OrderPython: pandas.DataFrame reshape重新排列(樞紐分析): stack() ; unstack() #可用idxmax()求最大值的index/columns ; groupby().mean().reset_index() ; pivot() ; pivot_table( aggfunc = np.mean ) ; set_index() ; pivot_table = groupby + pivot #pivot_table() 有aggfunc參數,所以索引組合可以重複,pivot則無此參數,若有重複的索引組合,需要先用groupby().mean()Python pandas df.assign 實戰教學:先造 PDF,再用 iterator 抽文字/表格,最後補欄位Excel TQC考題402:關聯式樞紐分析表製作,關聯,資料模型,樞紐分析表分析>選項>若為空白儲存格顯示0Python 檔案偵探:如何精準讀取「建立、修改、存取」時間?
0 Python 如何用 Mistune 將 Markdown (md)轉成 AST (Abstract Syntax Tree , 抽象語法樹)並匯出成 JSON; markdown = mistune.create_markdown( renderer=’ast’ ) 2025-07-17
0 Python 正則括號五兄弟:捕獲 / 非捕獲 / 命名 / 正向前瞻 / 負向前瞻 ( … )捕獲組, (?: … )非捕獲組, (?P … )命名捕獲組, (?= … )正向前瞻斷言, (?! … )負向前瞻斷言 2025-10-06
近期留言