20140817_03_HX400V_宜蘭國際童玩節_台灣 by 儲蓄保險王 · 2014-08-26 20140817_03_HX400V_宜蘭國際童玩節_台灣 http://youtu.be/HgA-5B5TqBI 相關文章Python:繁簡互轉 pip install opencc-python-reimplementedPython: 如何使用 pydub (dub:配音)將m4a 轉換為wav? 用 os.environ [ "PATH" ] 設定環境變量; from pydub import AudioSegmentPython 如何做excel的樞紐分析? pandas.pivot_table() 或 pandas.DataFrame .groupby() ; 如何指定欄位順序? DataFrame.reindex() ; .sortlevel() ; DataFrame[[col1, col2, col3 ]] ; df.columns.map() ; 如何顯示所有欄? pandas.set_option ("display.max_columns", None)Python IDE(Integrated Development Environment 整合開發環境) colab如何掛載雲端硬碟?from google.colab import drive; drive.mount( '/content/drive' ) ; 檔案複製shutil.copy() #shell utility; 檔案移動shutil.move( source_file, destination_path); 刪除整個資料夾shutil.rmtree( folder_to_delete ); 刪除某一個檔案os.remove() #shutil.remove()會觸發AttributeError; 如何將檔案路徑拆分為父資料夾與檔案名稱(含副檔名)? os.path.dirname( file_path) ; os.path.basename( file_path) 如何將檔案名稱拆分為主檔名與副檔名? os.path.splitext( file_name) #split(分裂) ext的意思Python:用numpy.polyfit()與numpy.poly1d()做多項式曲線擬和; matplotlib 如何變更legend圖例字型大小? plt.rc("legend", fontsize=16) ; ax.legend(loc = “best”, fontsize=16, handlelength=0.5, frameon = False)Python 機器學習: K-近鄰演算法(K Nearest Neighbor ,簡稱 KNN) ; from sklearn.neighbors import KNeighborsClassifier ; from sklearn.model_selection import train_test_splitPython: 網路爬蟲 selenium 開啟chrome瀏覽器自動連線; chrome = webdriver.Chrome (service=service, options=options) ; 以下錯誤如何解決? SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 113 Current browser version is 118.0.5993.118 with binary path C:\Program Files\Google\Chrome\Application\chrome.exePython: 淺拷貝(shallow copy) vs 深拷貝(deep copy),什麼時候需要用深拷貝? import copy ; b = copy.deepcopy(a)Python: 如何計算全文件詞頻(term frequency,簡稱TF)?如何使用jieba做中文斷詞? lis_jieba = jieba.lcut(strr)
0 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”] 2023-02-08
0 Python: pandas.DataFrame 如何合併? 如何以keys參數建立雙層column name ; pd.concat(dfs, axis=1, keys = dic_name_df.keys() ) ;雙層column name的DF與Series或單層column name的DF做橫向(axis=1)合併會如何? 雙層column name被壓縮成單層的tuple 2023-06-14
近期留言