0

I use python3.x,I want to know the scope of numerical type.

For example, the float, the maximum and the minimum.

I know the scope of java's float and int, but in python I can't find it now.

For example,java float from 10^-38 to 10^38,so python's float?

eyllanesc
  • 235,170
  • 19
  • 170
  • 241

1 Answers1

0

int and float are the names of built-in types and are always in scope in Python. I don't know what you mean by "the maximum and the minimum" but max and min are built-in functions, thus always in scope.

Paul Cornelius
  • 9,245
  • 1
  • 15
  • 24