From 7d18fe39d45bfdd2e4d432c8bc70b4c7496f7e2d Mon Sep 17 00:00:00 2001 From: Ashita Prasad Date: Sat, 8 Jun 2024 23:39:52 +0530 Subject: [PATCH] Update and rename match_case_statement.md to match-case.md --- .../advanced-python/{match_case_statement.md => match-case.md} | 1 - 1 file changed, 1 deletion(-) rename contrib/advanced-python/{match_case_statement.md => match-case.md} (95%) diff --git a/contrib/advanced-python/match_case_statement.md b/contrib/advanced-python/match-case.md similarity index 95% rename from contrib/advanced-python/match_case_statement.md rename to contrib/advanced-python/match-case.md index b617f7a..1b4f017 100644 --- a/contrib/advanced-python/match_case_statement.md +++ b/contrib/advanced-python/match-case.md @@ -247,6 +247,5 @@ The match case statements provide an elegant and readible format to perform oper ## 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/)