161010陽朔銀子岩(Sony A5000錄影) by 儲蓄保險王 · 2016-11-13 https://youtu.be/DlVeCus0xlg https://youtu.be/5JtbyLvZa90 https://youtu.be/m6fOnKsRoc0 相關文章Python: numpy 4d array如何取值? pandas如何去掉空列/空欄? 如何重置DataFrame的index/欄標籤? df_drop = df_Raw.dropna (axis=0, how="all").reset_index(drop=True) ; df_drop1.columns = list(range(df_drop1.columns.size))Python 邏輯運算子: and(&) or(|) xor(^) not ; assert 預期為真的條件式, "錯誤訊息" ; 條件式為真的話,繼續往下跑,否則AssertionError: "錯誤訊息"Python: ModuleNotFoundError: No module named 'pip' ; 如何安裝pip套件?下載並執行get-pip.py; where python #查看python安裝路徑; python -V #查看python版本; 如何查看指定路徑python的版本?Python: 如何使用graphviz套件繪製流程圖? from graphviz import Digraph ; dot = Digraph() ; dot.attr(rankdir='TB', size='10,15') #"TB": Top to Bottom, 從上而下的佈局Python: 如何用seaborn (sns) 套件繪製具有多個子圖的散佈圖且限定欄數?g = sns.relplot (data=tips, x="total_bill", y="tip", col="day", hue="sex",col_wrap=2, kind="line")Python: 如何串接Meta API ?如何將dict存成JSON檔? json.dump(dic_msg ,f , ensure_ascii=False ,indent=4)Python:如何確保只有單欄資料的變數,其型態是 pandas.Series 而非單欄的DataFrame? pandas.DataFrame.squeeze() ; df.set_index() 將兩欄的df,其中一欄設為index後,其型態是單欄的DataFrame還是Series?Python: 如何將folder_name, file_name合併為file_path? fpath = os.path .join(folder, fname) ; "\\".join([folder, fname]) ; 如何將file_path拆分出folder?Python物件導向 (Object-oriented programming,簡稱OOP): 類別變數 __class__.PI ; 物件變數 self.PI ; 類別方法 @classmethod cls.PI ; 靜態方法 @staticmethod
0 Python: 若符合特定條件或觸發AssertionError, 如何提前終止函式?將return置於if, elif, except AssertionError的縮排之下 2023-06-17
0 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) 2022-09-07
近期留言