20140817_00_HX400V_宜蘭國際童玩節_台灣 by 儲蓄保險王 · 2014-08-23 20140817_00_HX400V_宜蘭國際童玩節_台灣 http://youtu.be/Bx2ebfztcY8 遠傳的3G網路超慢 一個晚上只上傳一個檔案 其他20個現在都還沒傳完 相關文章Python: 如何用tkinter做出 對話 Button GUI? 點Button即可選擇檔案 ; fpath = filedialog .askopenfilename() ; self.process_button.pack(fill='both', expand=True) ; 物件導向避免使用全域變數Python: Matplotlib 中如何將圖例放置在繪圖之外? plt.legend(bbox_to_anchor=(1.05, 1.0), loc='upper left') ; plt.tight_layout() ; 如何防止儲存的檔案圖例被裁切? plt.savefig('example.png', dpi=300, format='png', bbox_extra_artists=(lg,), bbox_inches='tight')Python: 如何使用selenium打開chrome瀏覽器連線Facebook,自動輸入帳密後登入?from selenium import webdriver ; driver = webdriver.Chrome() ; driver.get(url)Python: pandas.Series如何只保留str,去除重複值?#isinstance(x:Any, str) -> bool #.drop_duplicates() #Series.apply( function )逐元素應用function運算 #DataFrame.apply( function )逐Series應用function運算 .drop_duplicates() 跟.unique()有何差別?Python: 如何即時將語音轉為文字? import speech_recognition as sr ; r = sr.Recognizer() ; str1 = r.recognize_google( audio, language = "zh-TW")Python: pandas.Series.str.split( pat="\s+|\t", expand=True, n=3 ) ; 如何將Series依據分隔子(tab與不定數空白混用) 拆分為多欄的DataFrame?Python: 如何使用graphviz套件繪製流程圖? 如何讓左右兩個子圖同高度? graph_attr = {'newrank': 'true'}Python: matplotlib繪製出的圖表如何插入背景圖? img = plt.imread('background_image.png') ; ax.imshow(img, extent=[0, 10, -1.2, 1.2], aspect='auto', alpha=0.5)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()
近期留言