+ 2
max number
in pascal there is the concept of the maximum possible number - this is maxint. in python how does this number look and how to call it?
2 Answers
+ 4
math module has a constant "inf", would it fill your needs?
+ 4
Python's ints don't overflow, they grow forever, so there is no need for maxint.