A small collection of lessons and code examples for learning math topics using Python.
number_theory/primes/theory.md: short, readable notes on primesnumber_theory/primes/primes_basics.py: basic prime utilitiesnumber_theory/primes/primes_algorithms.py: classic algorithms (sieve, primality tests)number_theory/primes/exercises_primes.py: practice problems
From the project root:
python number_theory/primes/primes_basics.py
python number_theory/primes/primes_algorithms.py