Excel TQC考題506: 分頁列印報表,檔案>選項>進階>編輯自訂清單 by 儲蓄保險王 · 2022-04-15 Excel TQC考題506: 分頁列印報表 簡單的部分略過 題目: 檔案>選項>進階>編輯自訂清單 在最底頁 排序: 點右下角ICON進入 分頁預覽 拉動藍線跟插入分頁 交互使用 相關文章Python TQC考題606 二維串列行列數Python TQC考題608 最大最小值索引Python: matplotlib如何設定座標軸刻度? plt.xticks(seq, labels) ;如何生成fig, ax物件? fig = plt.figure(figsize= (10.24, 7.68)) ; ax = fig.add_subplot() ; fig, ax = plt.subplots(figsize=(10.24, 7.68)) ; 如何使用中文? plt.rcParams["font.family"] = ["Microsoft JhengHei"]Python 邏輯運算子: and(&) or(|) xor(^) notPython Pathlib 實戰:優雅地篩選多種圖片檔案; images = [f for f in p.glob("*") if f.suffix.lower() in img_extensions]Python:如何用pandas.read_csv()讀取無欄標籤的csv檔?= pd.read_csv("路徑\檔名.副檔名",header=None) ; print( "{:=^40s}".format("傳說中的分隔線") ) ;置中對齊,不足40字元的部分以=填滿Python TQC考題804 大寫轉換 .title() .upper() .lower()Python TQC考題905 字串資料刪除,datanew=data.replace(strold,strnew), f.write(datanew)Python 如何用pandas.Series.nsmallest() 找到n個與target差距最小的index?再從中找到距離idxmax最近的index?避免誤抓sidelobes的index? targetIdx = (serMean-target_value).abs().nsmallest(n).index.tolist() ;Series切片: .loc[標籤名1:標籤名2] (會含標籤名2) ; .iloc[位置1:位置2] (不含位置2)
近期留言