看板
[ Python ]
討論串[問題] 請問一下讀檔的問題
共 8 篇文章
內容預覽:
最近在練習讀檔的問題. 假如我有一個檔 "text.txt". 內容是:. on one of the ossuaries -- "Mariamene" -- offers.. that the tomb is That of. 我寫了一個程式. --------. import string. i
(還有427個字)
內容預覽:
不只9個吧?你少了一個 the. --. #!/usr/bin/python. import re. result = {}. pattern = re.compile(r'(\w+)'). f = open('text.txt', 'r'). for line in f:. for word in
(還有70個字)
內容預覽:
不好意思~~~模仿你的語言測試了一下. 再請教一些問題. **. import re. result = {}. pattern = re.compile(r'(\w+)'). f = open('text.txt', 'r'). for line in f:. for word in patter
(還有283個字)
內容預覽:
回完你的信才發現這邊也有XD. 我順便將我使用re的筆記po上來好了...有錯請不要鞭太大力:p. re.compile.findall. --. txt = """div class=pexplain>123</div>. div class=pexplain>456</div>""". for
(還有707個字)
內容預覽:
※ 引述《wawawa (哇哇哇○( ̄﹏ ̄)○)》之銘言:. 是我的話就這樣寫. #!/usr/bin/python. import re. result = set(). pattern = re.compile(r'(\w+)'). f = open('text.txt', 'r'). for
(還有12個字)