Re: [討論] Python 3.10將加入Switch-Case語句
※ 引述《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,
4年前
, 1F
03/28 01:05, 1F
※ 編輯: crazycy (114.34.218.212 臺灣), 03/28/2021 01:14:19
推
03/28 02:53,
4年前
, 2F
03/28 02:53, 2F
→
03/28 02:53,
4年前
, 3F
03/28 02:53, 3F
推
03/28 03:03,
4年前
, 4F
03/28 03:03, 4F
→
03/28 03:04,
4年前
, 5F
03/28 03:04, 5F
推
03/28 09:29,
4年前
, 6F
03/28 09:29, 6F
→
03/28 09:41,
4年前
, 7F
03/28 09:41, 7F
推
03/28 12:52,
4年前
, 8F
03/28 12:52, 8F
推
03/28 12:53,
4年前
, 9F
03/28 12:53, 9F
→
03/28 12:53,
4年前
, 10F
03/28 12:53, 10F
推
03/28 17:25,
4年前
, 11F
03/28 17:25, 11F
→
03/28 17:25,
4年前
, 12F
03/28 17:25, 12F
推
03/29 12:36,
4年前
, 13F
03/29 12:36, 13F
討論串 (同標題文章)
Soft_Job 近期熱門文章
18
31
26
104
PTT職涯區 即時熱門文章
25
39