1. ホーム
  2. プログラミング言語
  3. パイソン

python reports an error: 'NoneType' object has no attribute 'group'

2022-01-22 14:51:46
<パス

@[python reports error 'NoneType' object has no attribute 'group'], エラーは 'NoneType ' オブジェクトがグループモジュールを持たないこと、つまり、値と一致しないことです。
次のコードはその一例です。

res = re.match('^W\d','WYF123')
print(res.group())
'^' means match the beginning of the line, '\d' means match the number 0-9.
This one doesn't match the value, so it reports an error

  • 1
  • 2
  • 3
  • 4

修正しました。
res = re.match('^WYFのテンサイ','WYF123')
print(res.group())