diff --git a/contrib/advanced-python/match_case_statement.md b/contrib/advanced-python/match_case_statement.md index 57f6bfb..6941d98 100644 --- a/contrib/advanced-python/match_case_statement.md +++ b/contrib/advanced-python/match_case_statement.md @@ -160,3 +160,14 @@ The patterns will not match the cases and will trigger the wildcard case for the >>> get_class(Pet('Tommy', 'Dog')) Invalid ``` + +### Nested Patterns + +### Complex Patterns +#### Wildcard + +#### Guard + +## Summary + +## Further Reading