Python TQC考題502 乘積,def by 儲蓄保險王 · 2022-04-29 #Python TQC考題502 乘積 def compute(x,y): return x*y x=eval(input()) y=eval(input()) ans=compute(x,y) print(ans) 相關文章Python: 如何傳遞不定長度參數到function中? *args ; **kwargsPython: 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: matplotlib如何繪製出副刻度?minor_locator = ticker.MultipleLocator(0.5) ; ax.xaxis.set_minor_locator(minor_locator)Python: matplotlib繪圖, ax.plot (pandas.Series, pandas.DataFrame) 一次畫出多條折線圖; fig, ax = plt.subplots() #一次創建fig, ax兩個物件 ; fig = plt.figure() ; ax = fig.add_subplot(1, 1, 1) #fig, ax 分兩次建立 ; ax = df.plot()Python如何讀取json檔?dic = json.loads( json_str ) ; json的保留字:null, true, false(區分大小寫,全小寫), null(非"null",非Null)自動轉譯為None, true(非"true",非True)自動轉譯為True(bool), false(非"false",非False)自動轉譯為False(bool);colab如何掛載雲端硬碟? from google.colab import drive ; json檔的decode與encode? json.load() ; json.loads() ; json.dump() ; json.dumps() #s代表string的意思,有s的指令,參數需使用str type使用 Python 檢驗字符串格式:掌握正則表達式(Regular Expression)的起始^與終止$符號, pattern = r'^GATR[0-9]{4}$'Python: matplotlib.pyplot ; lines = ax.plot(x, y) ; 如果y是2D的 pandas.DataFrame ; 如何一次加入所有欄標籤當作圖例(legend)的labels? labels= y.columns.tolist() ; ax.legend(lines, labels)Python: 如何使用functools.reduce逐步縮減可迭代對象,合併為單個結果? import functools; product = functools.reduce( lambda x, y: x * y, numbers) ; reduce(function, sequence [, initial]) -> value ; map(function, iterable) ; filter(function, iterable) ; map ; filterPython: openCV無法使用中文路徑的話,該如何處理?bgrImage = cv2.imdecode (numpyarray, cv2.IMREAD_GRAYSCALE)
0 Python: 如何即時將語音轉為文字? import speech_recognition as sr ; r = sr.Recognizer() ; str1 = r.recognize_google( audio, language = “zh-TW”) 2023-10-23
近期留言