Python TQC考題504 次方計算,def compute(x,y):return x**y by 儲蓄保險王 · 2022-04-29 def compute(x,y): return x**y x=eval(input()) y=eval(input()) ans=compute(x,y) print(ans) “”” 簡單到無需自定義函數 只是練習如何自定義函數 14, 3是使用者input() 不要直接寫進去 compute(14,3) “”” 相關文章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的意思年收入50萬的投資人如何累積八千萬或提前15年累積千萬退休金? Python:如何使用numpy_financial.fv()計算終值?Python: os.path.isfile() 與 os.path.exists() 有何差別?Python: 如何用isin()函式切片出兩個 pandas.Series 重複的元素? ser_bool = 長的Series.isin (短的Series); numpy.bool_ ; WR75 WR42 WR28頻段為何?Python如何做excel的樞紐分析? DataFrame .pivot_table (values=None, index=None, columns=None, aggfunc='mean') ; df.groupby(['A', 'B', 'C'], sort=False)['D'].sum().unstack('C')Python: matplotlib繪圖如何共用x axis, y axis, x label, ylabel? fig, axs = plt.subplots(nrows=2, ncols=3, sharex=True, sharey=True) ; plt.suplabel()Python: pandas.DataFrame.drop()的參數axis=0 / 1 vs index / columns ; 如何drop DataFrame的rows / columns ?Python: 如何對 pandas.DataFrame 兩欄位運算後,增加到最後一欄? df['sum_AB'] = df.apply(sum_ab, axis=1) ; lambda函式Python: matplotlib繪圖 如何用 bbox_to_anchor 控制legend (圖例)位置? ax.legend( bbox_to_anchor = (1, 1), borderaxespad=0)
0 Python繪製hlines , vlines , axhline , axvline , axline ; import matplotlib.pyplot as plt ; plt.hlines(y, xmin, xmax,color=”b”) ; plt.vlines(x, ymin, ymax,color=”r”) 2022-09-12
近期留言