看板 Soft_Job 關於我們 聯絡資訊
※ 引述《ohmylove347 (米特巴爾)》之銘言: : https://reurl.cc/8yzA24 : 上面說2006年 PEP 3103就建議實施switch-case語句。但是,在PyCon 2007上的一項民意調查未獲得對該功能的支持後,Python開發人員將其刪除。 : 沒有使用Python不知道生態系如何 : Google App上看到的文章 : 不知道各位大大對Switch加入有什麼看法 : ----- : Sent from JPTT on my Google Pixel 2. 討論這麼熱烈 可是各位有點進去把它看完嗎XD Python 3.10 的 Structural Pattern Matching 不是單純的 switch-case 而已 它的 case 裡是還可以放變數給它賦值的(不知道怎麼準確描述 舉個官網的例子,還可以這樣用: Patterns with a literal and variable ----------------------------- # point is an (x, y) tuple match point: case (0, 0): print("Origin") case (0, y): print(f"Y={y}") case (x, 0): print(f"X={x}") case (x, y): print(f"X={x}, Y={y}") case _: raise ValueError("Not a point") ----------------------------- Nested patterns ----------------------------- match points: case []: print("No points in the list.") case [Point(0, 0)]: print("The origin is the only point in the list.") case [Point(x, y)]: print(f"A single point {x}, {y} is in the list.") case [Point(0, y1), Point(0, y2)]: print(f"Two points on the Y axis at {y1}, {y2} are in the list.") case _: print("Something else is found in the list.") ----------------------------- 還有那篇文章舉的,在PEP 635 裡的例子: ----------------------------- match x: case host, port: mode = "http" case host, port, mode: pass ----------------------------- 可以取代: ----------------------------- if isinstance(x, tuple) and len(x) == 2: host, port = x mode = "http" elif isinstance(x, tuple) and len(x) == 3: host, port, mode = x ----------------------------- 在某些場合下能省下來的 if-else 比單純的 switch-case 多不少 如果只是單純的 switch-case 早在十幾年前的 PEP 275、PEP 3103 之類的就被 reject 了 官方 document 和 PEP 635 裡還有舉一些其它用法的例子 有興趣的可以再點進去看 Reference: What’s New In Python 3.10 https://docs.python.org/3.10/whatsnew/3.10.html PEP 634 -- Structural Pattern Matching: Specification https://www.python.org/dev/peps/pep-0634/ PEP 635 -- Structural Pattern Matching: Motivation and Rationale https://www.python.org/dev/peps/pep-0635/ -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.34.218.212 (臺灣) ※ 文章網址: https://www.ptt.cc/bbs/Soft_Job/M.1616864612.A.F96.html
Muscovy: 其實我看了, 但是我看不懂... XD 03/28 01:05
※ 編輯: crazycy (114.34.218.212 臺灣), 03/28/2021 01:14:19
yyhsiu: 覺得比較像前面有人推過的 ocaml pattern matching 03/28 02:53
yyhsiu: 不只是一堆 if else 簡單可以取代 03/28 02:53
Richun: 嗯...看起來很像是rust的matching pattern 03/28 03:03
Richun: 在結合了enum後可以達到很強大的效果 03/28 03:04
neo5277: c#也一樣啊 03/28 09:29
devilkool: C#的switch越來越好用 03/28 09:41
wulouise: 普通的switch是對單一數值匹配,這邊是對一組資料做匹配 03/28 12:52
majohnsha: 你講到重點了 這次改動是考量syntax sugar 前面一堆在 03/28 12:53
majohnsha: 討論效能 蠻好笑的 03/28 12:53
brianhsu: 就是 pattern matching 啊,本質上是 syntax auger,和 03/28 17:25
brianhsu: Scala 的作法類似。 03/28 17:25
locklose: 推 03/29 12:36