Python: bytes , bytearray by 儲蓄保險王 · 2022-12-17 y = bytes.fromhex(z) 推薦hahow線上學習python: https://igrape.net/30afN 相關文章Python: 如何幫list添加元素?append() ; extend() 的差別為何? extend()配合zip()超好用Python: 如何用 pandas.DataFrame.apply 讓DataFrame增加新的一欄 ; df[“mean”] = df.apply( np.mean, axis=1) ; DataFrame.apply(func, axis=0, raw=False, result_type=None, args=(), **kwargs)Python: matplotlib如何設定刻度標籤的字體大小? ax.tick_params (axis='both', labelsize=None) ; 那些參數可以設為None?Python: while loopPython如何做excel的樞紐分析? DataFrame .pivot_table (values=None, index=None, columns=None, aggfunc='mean') ; df.groupby(['A', 'B', 'C'], sort=False)['D'].sum().unstack('C')Python: 如何串接chatGPT? import openai ; res = openai.Completion.create() ; 如何處理unicode?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中的時間處理簡介; timestamp: float = time.time() #獲取時間戳; localtime = time.localtime( timestamp ) #獲取localtime; strftime = time.strftime('%Y-%m-%d %H:%M:%S', localtime) #獲取strftime #str format timePython: frozenset不可變的集合,與set相似,但不可修改
0 Python機器學習: train_test_split() 切割資料(波士頓地區房價)為訓練資料跟測試資料; from sklearn.model_selection import train_test_split ; xtrain, xtest, ytrain, ytest = train_test_split(x, y, test_size=0.3, random_state=42, shuffle=True) 2022-12-14
0 Python 與時間相關的模組 import time ; .time() ; .localtime() ; .tm_year ; .tm_mon ; .tm_mday ; .ctime() #current time ; .sleep() ;time.asctime() #as string ; time.strftime() #string format time 2022-09-23
近期留言