gpt4 book ai didi

python - Python结构模式匹配中如何区分元组和列表?

转载 作者:行者123 更新时间:2023-12-04 16:35:47 28 4
gpt4 key购买 nike

我想使用 Python 的结构模式匹配来区分元组(例如表示一个点)和元组列表。

虽然直接的方法不起作用:

def fn(p):
match p:
case (x, y):
print(f"single point: ({x}, {y})")
case [*points]:
print("list of points:")
for x, y in points:
print(f"({x}, {y})")

fn((1, 1))
fn([(1, 1), (2, 2)])

哪些输出:

single point: (1, 1)
single point: ((1, 1), (2, 2))

而我希望它输出:

single point: (1, 1)
list of points:
(1, 1)
(2, 2)

切换 case 语句的顺序在这里也无济于事。

用模式匹配解决这个问题的好方法是什么?

最佳答案

使用 tuple(foo) 匹配元组,使用 list(foo) 匹配列表

def fn(p):
match p:
case tuple(contents):
print(f"tuple: {contents}")
case list(contents):
print(f"list: {contents}")

fn((1, 1)) # tuple: (1, 1)
fn([(1, 1), (2, 2)]) # list: [(1, 1), (2, 2)]

关于python - Python结构模式匹配中如何区分元组和列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70034293/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com