This is a Python Library inspired by the functions that are needed to solve many Project Euler problems. It also includes some utilities that I personally enjoy very much.
Here is a (non-comprehensive) list of features that are in the library:
- Palindromes
- The ability to verify if a number is a palindrome
- Prime Generation
- The ability to generate a large set of prime numbers - to a list or to a file if you want to pre-generate them.
- Pandigital
- The ability to verify if a number is pandigital or not
You can install the library by running:
pip install EulerKit
From there you can begin using the library immediately by including it as one of your imports:
from EulerKit import*If you want a more comprehensive guide, check the wiki
If you are curious, the PyPi page is located here