Re: [討論] Python 3.10將加入Switch-Case語句

看板Soft_Job作者 (lcy)時間3年前 (2021/03/28 01:03), 3年前編輯推噓8(805)
留言13則, 9人參與, 3年前最新討論串5/6 (看更多)
※ 引述《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

03/28 01:05, 3年前 , 1F
其實我看了, 但是我看不懂... XD
03/28 01:05, 1F
※ 編輯: crazycy (114.34.218.212 臺灣), 03/28/2021 01:14:19

03/28 02:53, 3年前 , 2F
覺得比較像前面有人推過的 ocaml pattern matching
03/28 02:53, 2F

03/28 02:53, 3年前 , 3F
不只是一堆 if else 簡單可以取代
03/28 02:53, 3F

03/28 03:03, 3年前 , 4F
嗯...看起來很像是rust的matching pattern
03/28 03:03, 4F

03/28 03:04, 3年前 , 5F
在結合了enum後可以達到很強大的效果
03/28 03:04, 5F

03/28 09:29, 3年前 , 6F
c#也一樣啊
03/28 09:29, 6F

03/28 09:41, 3年前 , 7F
C#的switch越來越好用
03/28 09:41, 7F

03/28 12:52, 3年前 , 8F
普通的switch是對單一數值匹配,這邊是對一組資料做匹配
03/28 12:52, 8F

03/28 12:53, 3年前 , 9F
你講到重點了 這次改動是考量syntax sugar 前面一堆在
03/28 12:53, 9F

03/28 12:53, 3年前 , 10F
討論效能 蠻好笑的
03/28 12:53, 10F

03/28 17:25, 3年前 , 11F
就是 pattern matching 啊,本質上是 syntax auger,和
03/28 17:25, 11F

03/28 17:25, 3年前 , 12F
Scala 的作法類似。
03/28 17:25, 12F

03/29 12:36, 3年前 , 13F
03/29 12:36, 13F
文章代碼(AID): #1WNsLa-M (Soft_Job)
討論串 (同標題文章)
文章代碼(AID): #1WNsLa-M (Soft_Job)