1
0
Fork 0
gaiety-life/content/posts/divisibility-rules.md
2020-09-26 09:01:09 -05:00

925 B

title date tags coverImage description
Divisibility Rules 2020-09-15
Tech
Python
/images/uploads/divisbility-rules.jpg Fun Python side project inspired by VSauce.

VSauce has a number of channels including D1NG where they post fun educational content of all kinds. Recently I found myself itching to code and inspired by some handy division math tricks.

So I threw together this Python script with methods showcasing each divisibility rule example. The script has no direct practical purpose as each function could be done more simply for a computer to handle (likely just with % modulo for all cases). But I thought this would be fun enough to share!

Always learning~ P.S. This was my first time writing Python tests!