20140817_10_HX400V_宜蘭國際童玩節_泰國 by 儲蓄保險王 · 2014-08-27 20140817_10_HX400V_宜蘭國際童玩節_泰國 https://www.youtube.com/watch?v=TxYYP3uW8o8 相關文章Python: 自定義函數計算計程車車資(先typing,再用預設值), 巢狀字典以及typing.Union[ ], assert 斷言Excel/Word搬移整欄或整列資料Python 比對神器 difflib:從找錯字到自動修復,不再只靠肉眼找不同Python: pandas.DataFrame的串接 pandas.concat() #concatenate 連接, 如何重新排列columns 順序? df[["甲", "乙", "丙"]] ; df.reindex( columns = ["甲", "乙", "丙"] )撤銷第三方網站存取google帳戶的權限Python爬蟲:BeautifulSoup的.find_all() 與select() ; from bs4 import BeautifulSoup ; .string .text .get_text() 獲取文字內容Python tempfile 模組完全指南:安全管理臨時檔案的最佳實踐; import tempfile ; tempfile.gettempdir() ; tempfile.template ; os.access(temp_dir, os.W_OK) ; with tempfile.NamedTemporaryFile() as tmp: tmp_path = tmp.name #有檔名的臨時檔案 ; with tempfile.TemporaryDirectory() as tmpdir #臨時資料夾 ; with tempfile.TemporaryFile() as tmp #無檔名的臨時檔案Python: pandas.DataFrame.astype() 函数方法的使用; df1.astype( dtype = np.float64, errors = "ignore")Python: 如何使用numpy.newaxis 增加資料的維度? y = x[:, np.newaxis]
0 Python: any(list) 判斷list中是否有True ; all(list) 判斷list中是否全為True ; any(pandas.Series)相當於any(pandas.Series.values) ; i in pandas.Series 卻相當於於i in pandas.Series.index 2023-06-03
0 Python如何寫入docx文件? from docx import Document ; doc = Document() ; table = doc.add_table(rows=5, cols=3) ; table.cell(r,c).text = str(tabs[r][c]) ; doc.add_heading ; p = doc.add_paragraph ; p.add_run ; doc.add_picture ; 使用wordPad開啟會少最後一個row,可以用免費的LibreOffice 2022-09-14
近期留言