20140817_05_HX400V_宜蘭國際童玩節_土耳其 by 儲蓄保險王 · 2014-08-26 20140817_05_HX400V_宜蘭國際童玩節_土耳其 http://youtu.be/BtoMf9sxmHU 相關文章Python: pandas.DataFrame如何重置列index? DataFrame.reset_index( drop = True) ; 如何重置欄index? DataFrame的屬性與方法 .values ; .to_numpy()Word短篇文件編輯,TQC考題104:房屋租賃契約書,並列文字,版面配置>段落 展開>中文印刷樣式>置中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 set 集合 { },交集(intersection) & 像and, 聯集(union) | 像or, 差集(difference)-像減法或not, 對稱差集(symmetric difference)^交集除外 xorPython: 前綴f string 格式化字串 hex_string = f'0x{value :02x}' #:02x or :08b是格式化說明符(format specifier) ; hex() or bin() #轉為16 or 2進位數字,會省略前導0Excel財務函數PPMT,TRIM去除字串多餘的空格,ASC統一半形文字Python 實戰:用 jieba + Normalize + N-gram 穩定抓出 Family 名稱 ; re.sub(r'[^a-z0-9]+', '', s.lower()) #全部轉小寫 #移除非英數字元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: pandas.Series的加法,需要index一樣,才能將對應位置的元素相加
0 Python中的時間處理簡介; timestamp: float = time.time() #獲取時間戳; localtime = time.localtime( timestamp ) #獲取localtime; fmt= ‘%Y-%m-%d %H:%M:%S’ ; strftime = time.strftime(fmt, localtime) 等效於 datetime.datetime.now().strftime(fmt) #獲取strftime #str format time ; 2024-02-10
0 Python 正則表示法 regular expression: re.match() ; re.search() ; re.findall() ; re.fullmatch() 有何差別? 2023-05-24
近期留言