I have code that checks for named tuples and dataclasses by looking for a _fields
attribute:
if hasattr(candidate, '_fields'):
do_action()
How can I express this with Python 3.10's match/case structural pattern matching?
I have code that checks for named tuples and dataclasses by looking for a _fields
attribute:
if hasattr(candidate, '_fields'):
do_action()
How can I express this with Python 3.10's match/case structural pattern matching?
Copyright © 2021 Jogjafile Inc.
Understanding the documentation
PEP 634 for structural pattern matching documents this capability as a class pattern:
cls()
will do an isinstance() test.cls(attr=variable)
tests for the presence of an attribute and binds the value to the variable.To emulate a hasattr() for duck typing:
_fields
, the attribute that must be present._
if you don't need to capture the value or to some other variable name if you do want to capture the value.This specific example
Your specific example,
if hasattr(candidate, '_fields'): do_action()
, translates to:Complete worked-out example
This shows how all the parts fit together:
This script outputs: