def trigo(): product = 1.0 for counter in range(1, 1000, 1): for dex in list(range(1, 360, 1)): angle = radians(dex) product *= sin(angle)**2 + cos(angle)**2 return product def sha(): h = hashlib.sha1('secret') for i in xrange(1000000): h = h = hashlib.sha1(h.digest())