From e5c88286d5b72b0e0e51e4f1c889544b41c91ef9 Mon Sep 17 00:00:00 2001 From: SAM <60264918+SAM-DEV007@users.noreply.github.com> Date: Tue, 4 Jun 2024 18:02:50 +0530 Subject: [PATCH] Update match_case_statement.md Added remaining topic headings --- contrib/advanced-python/match_case_statement.md | 11 +++++++++++ 1 file changed, 11 insertions(+) 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