From fe4ce4a34df72c800d12c624385069b27b689d11 Mon Sep 17 00:00:00 2001 From: SAM <60264918+SAM-DEV007@users.noreply.github.com> Date: Tue, 4 Jun 2024 19:16:29 +0530 Subject: [PATCH] Update match_case_statement.md Added further reading topic summary --- contrib/advanced-python/match_case_statement.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/advanced-python/match_case_statement.md b/contrib/advanced-python/match_case_statement.md index cd7bc64..b617f7a 100644 --- a/contrib/advanced-python/match_case_statement.md +++ b/contrib/advanced-python/match_case_statement.md @@ -245,6 +245,8 @@ O/P: The match case statements provide an elegant and readible format to perform operations on pattern matching as compared to `if-else` statements. They are also more versatile as they provide additional functionalities on the pattern matching operations like unpacking, class matching, iterables and iterators. It can also use positional arguments for checking the patterns. They provide a powerful and concise way to handle multiple conditions and perform pattern matching ## Further Reading +This article provides a brief introduction to the match case statements and the overview on the pattern matching operations. To know more, the below articles can be used for in-depth understanding of the topic. + - [Python Match Case Statement - GeeksForGeeks](https://www.geeksforgeeks.org/python-match-case-statement/) - [PEP 634 – Structural Pattern Matching: Specification](https://peps.python.org/pep-0634/) - [PEP 636 – Structural Pattern Matching: Tutorial](https://peps.python.org/pep-0636/)