Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
s = "hello cats" print(re.search(r"hello",s).groups())
これは印刷され()ます。
()
ドキュメントによると、一致が見つからない場合、 groups() は空のタプルを返します。では、なぜこれが一致しないのでしょうか。
groups一致したグループを返します。次のものを定義しませんでした:
groups
s = "hello cats" print(re.search(r"(he)l(lo)",s).groups())
版画('he', 'lo')
('he', 'lo')