Forgive me if this question has been asked before but I could not find any related answer.
Consider a function that takes a numerical type as input parameter:
JavaScript
x
3
1
def foo(a):
2
return ((a+1)*2)**4;
3
This works with integers, floats and complex numbers.
Is there a basic type so that I can do a type hinting (of a real existing type/base class), such as:
JavaScript
1
3
1
def foo(a: numeric):
2
return ((a+1)*2)**4;
3
Furthermore I need to use this in a collection type parameter, such as:
JavaScript
1
4
1
from typing import Collection;
2
def foo(_in: Collection[numeric]):
3
return ((_in[0]+_in[1])*2)**4;
4
Advertisement
Answer
PEP 3141 added abstract base classes for numbers, so you could use:
JavaScript
1
5
1
from numbers import Number
2
3
def foo(a: Number) -> Number:
4
5