2017 KK Box年度風雲歌手演唱會_五月天(Sony Nex) by 儲蓄保險王 · 2017-01-23 https://youtu.be/x5oM6znutGo https://youtu.be/4-BoLvUXeps https://youtu.be/062JTUw-sRk 相關文章Python: bytes , bytearrayPython: 前綴f string 格式化字串 hex_string = f'0x{value :02x}' #:02x or :08b是格式化說明符(format specifier) ; hex() or bin() #轉為16 or 2進位數字,會省略前導0JSON 值可以是以下之一:String, Number, Boolean (true, false), Null (null), Object(對應python的dict), Array(對應python的list); Python如何讀取json檔?Python機器學習: 決策樹 (DecisionTreeClassifier) ; from sklearn.tree import DecisionTreeClassifier ; tree = DecisionTreeClassifier(criterion = "gini") #criterion = “entropy” #criterion: 標準,準則Python: 如何使用selenium自動開啟Chrome瀏覽器,輸入關鍵字後,按ENTER,搜尋圖片? 如何抓下所有大圖?Python: pandas.DataFrame的串接 pandas.concat() #concatenate 連接, 如何重新排列columns 順序? df[["甲", "乙", "丙"]] ; df.reindex( columns = ["甲", "乙", "丙"] )Python: 如何使用 subprocess.run() 執行外部命令?Python: 字串(string)的函式.rfind() .replace() 切片與串接; 如何尋找直欄中,含有特定關鍵字的列數? pandas.Series.str.contains("Hz") ;如何將Series中的內容去掉首末的空格並小寫? pandas.Series .str.strip() .str.lower() #需要兩次.strPython物件導向 (Object-oriented programming,簡稱OOP): 類別變數 __class__.PI ; 物件變數 self.PI ; 類別方法 @classmethod cls.PI ; 靜態方法 @staticmethod
0 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的意思 2023-07-16
0 Python: 如何向上取整到最接近的2的幾次方? range_bins = int(math.pow(2, math.ceil( math.log2(num_adc_samples) ))) 2023-04-11
0 Python機器學習: 線性迴歸, 計算均方誤差 (metrics.mean_squared_error), 判定係數 (metrics.r2_score), 皮爾森積差相關係數 (pearsonr) ; 以波士頓地區房價為例 2022-12-15
近期留言