Skip to content
Advertisement

How to type hint a generic numeric type in Python?

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

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

Furthermore I need to use this in a collection type parameter, such as:

JavaScript

Advertisement

Answer

PEP 3141 added abstract base classes for numbers, so you could use:

JavaScript
Advertisement