Skip to content
Snippets Groups Projects
Stephan Seitz's avatar
Stephan Seitz authored
Problem some constant expressions are neither Float,Integer,Rational but
don't have arguments.

>>> isinstance(pi, Integer)
False
>>> isinstance(pi, Float)
False
>>> isinstance(pi, Rational)
False
>>> pi.args
()
b87eeadf