dotfiles/scripts/pycalc_startup.py

16 lines
291 B
Python
Raw Normal View History

2019-10-29 15:23:23 +00:00
from math import *
2019-11-26 18:28:26 +00:00
from fractions import Fraction
2019-10-29 15:23:23 +00:00
def factors(n):
result = set()
for i in range(1, int(sqrt(n)) + 1):
div, mod = divmod(n, i)
if mod == 0:
result.add(div)
result.add(mod)
return result
2019-10-29 15:23:23 +00:00
print("loaded Python calculator")