Zaid Afzal
Results
2
comments of
Zaid Afzal
#### Integer (int) has no max limit in Python3. ```python import sys sys.maxsize # 9223372036854775807 ``` And sys.maxsize is not the max value of int, Python3's `int` can handle any...
> The PR I opened https://github.com/alessandromaggio/pythonping/pull/89 did solve the large number and negative number issue for me - perhaps you could take a look and try it out on your...