最佳答案
我在python中有一个函数,可以返回bool
或list
。是否有一种方法可以使用类型提示指定返回类型?
例如,这是正确的方法吗?
def foo(id) -> list or bool:
...