您的当前位置:首页正文

Python函数元数据如何为一个参数指定多个类型

2024-11-09 来源:个人技术集锦

def foo(value: 'str|int|float|list|tuple'):
    print(value)


foo(None)
显示全文