なんとなく生きてます

雑記帳備忘録チラシの裏

2017-01-01から1年間の記事一覧

Pythonの引数は参照渡しだけど値渡しに見えることがある

例を示す. Python 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> ls = [0, 0, 0] >>> def hoge(lst): ... lst[0] = 1 ... return lst ... >>> hoge…

Pythonでの正規表現のコンパイルとグループマッチング

Pythonの正規表現を使うときのメモ ポイントはコンパイルしてそれを使いまわすこと, また, groupを使うこと. Python 2.7.13で実行. >>> import re >>> str1 = "(arrest-vb _u2)" >>> rep = re.compile("\((.+)\s(.+)\)") >>> m = rep.search(str1) >>> m.gro…