cryptotools/examples/sieveOfEratosthenes.py
2026-01-11 09:19:22 +01:00

7 lines
129 B
Python

#!/usr/bin/env python3
from Cryptotools.Numbers.primeNumber import sieveOfEratosthenes
print(sieveOfEratosthenes(100))
print()