Excel TQC考題506: 分頁列印報表,檔案>選項>進階>編輯自訂清單 by 儲蓄保險王 · 2022-04-15 Excel TQC考題506: 分頁列印報表 簡單的部分略過 題目: 檔案>選項>進階>編輯自訂清單 在最底頁 排序: 點右下角ICON進入 分頁預覽 拉動藍線跟插入分頁 交互使用 相關文章Python import sys; sys.path; set PYTHONPATH= ; 環境變數; 字串前方加一個 r 是一個特殊的字串前輟旗標; Python的字串中輸入\\,輸出\ , 輸入%%,輸出%;跳脫字元(Escape Characters)Python: pandas.Series如何只保留str,去除重複值?#isinstance(x:Any, str) -> bool #.drop_duplicates() #Series.apply( function )逐元素應用function運算 #DataFrame.apply( function )逐Series應用function運算 .drop_duplicates() 跟.unique()有何差別? df.drop_duplicates() 等效於 df[~df.duplicated()]Python numpy中的ravel()、flatten()、reshape(-1)將多維array轉換成一維Python:使用struct() 對二進位數據打包、解包 data = struct.pack (format_str, 1, 2, 3.14) ; result = struct.unpack (format_str, data) ; numpy.fromfile() ;Python: frozenset不可變的集合,與set相似,但不可修改Python如何繪製Major Minor Grid(主要/次要格線)? import matplotlib.pyplot as plt; fig, ax = plt.subplots(1,1) ; plt.minorticks_on() ; ax.grid(visible=True, which="major", c="k", linewidth=1) ; ax.grid(visible=True, which="minor", c="k", linewidth=0.5)Python: jieba (中文斷詞套件) 如何分離詞性? jieba.posseg.cut() #pos: Part Of Speech (POS,詞性) #seg (segment, 切分)Python 正則表示法(Regular Expression) : re.Match 物件的 .group() .groups()方法 #捕獲組Python 非監督式機器學習: 距離導向聚類法(k-Means 演算法); 使用 scikit-learn ; 學生分群 ; from sklearn.cluster import KMeans
0 Python: pandas.DataFrame.drop()的參數axis=0 / 1 vs index / columns ; 如何drop DataFrame的rows / columns ? 2023-10-15
0 Python: Matplotlib 中如何將圖例放置在繪圖之外? plt.legend(bbox_to_anchor=(1.05, 1.0), loc=’upper left’) ; plt.tight_layout() ; 如何防止儲存的檔案圖例被裁切? plt.savefig(‘example.png’, dpi=300, format=’png’, bbox_extra_artists=(lg,), bbox_inches=’tight’) 2023-05-01
近期留言