2017 KK Box年度風雲歌手演唱會_五月天(Sony Nex) by 儲蓄保險王 · 2017-01-23 https://youtu.be/x5oM6znutGo https://youtu.be/4-BoLvUXeps https://youtu.be/062JTUw-sRk 相關文章Python: 如何判斷字符串內容是否為數字(整數或浮點數)? isinstance( eval( entry.get() ), (float, int) ) ; str.isdigit() #不包括小數點和負號 ; try~ except ValueError~ ; 正則表示法 regular expression ; pattern = '^[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?$'Python: random產生隨機不重複的數字list ; random.shuffle() ; random.sample() ; 撲克牌洗牌Python TQC考題: 輸入一個正整數n,並讀取read.txt內容,將首n列的每個英文字首字大寫輸出write.txt ; pandas.Series.str.title() #輸出csv或xlsx時,如何不輸出index 跟 header ? .to_csv( "write.txt", index=False, header=False)Python: sorted() 排序,參數key = lambda 匿名函式 ;物件導向 def __repr__(self): #原形畢露; def __str__(self): #給人閱讀Python如何用pandas.DataFrame.describe() 一次求得計數(count), 均值(mean), 標準差(std), max, min, 中位數, 1/4位數, 3/4位數Python: pandas.DataFrame如何移除所有空白列?if df_raw.iloc[r,0] is np.nan: nanLst.append(r) ; df_drop0 = df_raw.drop(nanLst,axis=0) ; pandas.isna() ;df_drop0 = df_raw.drop(nanLst,axis=0).reset_index(drop=True)Python: pandas.DataFrame reshape重新排列(樞紐分析): stack() ; unstack() #可用idxmax()求最大值的index/columns ; groupby().mean().reset_index() ; pivot() ; pivot_table( aggfunc = np.mean ) ; set_index() ; pivot_table = groupby + pivot #pivot_table() 有aggfunc參數,所以索引組合可以重複,pivot則無此參數,若有重複的索引組合,需要先用groupby().mean()Python GUI: tkinter中.get()與.cget()的差別為何? #configuration ; entry_widget.get() ; label_widget.cget("text") ; label_widget = tk.Label( window, text = "Hello, World!")Python: 如何串接Meta API ?如何將dict存成JSON檔? json.dump(dic_msg ,f , ensure_ascii=False ,indent=4)
近期留言