python 學習筆記 文檔中提取數字

第一種 str.isdigit() 若是字符串只包含數字則返回 True 不然返回 False。 python file = open('text.txt') content = file.read() s = [i for i in content if str.isdigit(i)] print(s) 第二種 正則表達式git \d+ 匹配1次或者屢次數字,注意這裏不要寫成*,由於即使是小數,
相關文章
相關標籤/搜索