You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
240 B

  1. #!/usr/bin/python
  2. test = False
  3. test = True
  4. from disk_cache import *
  5. @disk_cache
  6. def func(n):
  7. t = 1
  8. for i in range(1,n+1):
  9. t *= i
  10. return t
  11. if test:
  12. for i in range(0,10**9,1000):
  13. print(i)
  14. func.save_cache()