Excel TQC考題404:電視節目,條件式格式設定,FIND,NOT,ISBLANK by 儲蓄保險王 · 2022-04-16 Excel TQC考題404:電視節目 簡單的部分略過 移除重複項: 題目: 4-A記得要做 4-B範圍要選取正確: A7~D845 (不是D7~D845) 依據題目順序做 會顛倒顯示3,2,1 不可自行調換順序 相關文章Python 正則表示法(Regular Expression) : re.Match 物件的 .group() .groups()方法 #捕獲組Python物件導向: 類別class裡什麼時候該用 self?什麼放成類別等級變數?區域變數, 實例屬性, 類別屬性Python Pandas:to_json( orient = "records" ) 與 to_dict( orient = "records" ) 圖文教學與常見陷阱告別雜亂 XML!用 Python lxml 實現與 VS Code (Shift+Alt+F) 同級的「完美縮排」; from lxml import etree ; root = etree.fromstring(xml_bytes) #等效 root = etree.fromstring( xml_str.encode("utf-8") ); clean_xml_str = etree.tostring(root, pretty_print=True, encoding='unicode', xml_declaration=False) ; import xml.etree.ElementTree as ETPython 邏輯運算子: and(&) or(|) xor(^) notPython如何用 Thread 讓程式同時做多件事? threading與 非同步 有何差別? import threading ; t1 = threading.Thread( target= worker, args= ("員工A",))Python × lxml.etree:從 Word OOXML 讀、查、改、寫的實戰筆記; from lxml import etree ; parser = etree.XMLParser() ; root = etree.fromstring(xml_str.encode("utf-8"), parser=parser) #(根節點); print(etree.tostring(root, encoding="unicode", pretty_print=True)) #encoding="unicode"輸出str ; "utf-8"輸出bytes,漂亮顯示正則表示法(Regular Expression): pattern = re.compile(r'\d+') #re.Pattern ; pattern.match() ; pattern.search() ; pattern.findall() ; pattern.finditer() ; pattern.sub() 如何使用?Python爬蟲:BeautifulSoup的.find_all() 與select() ; from bs4 import BeautifulSoup ; .string .text .get_text() 獲取文字內容
0 Python: matplotlib如何設定刻度標籤的字體大小? ax.tick_params (axis=’both’, labelsize=None) ; 那些參數可以設為None? 2023-04-10
近期留言