Advertisement
maple-tac

psycho-sauce

Jul 26th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. # modified yzz() -equation:
  2.  
  3. def yzz(n,a): #returns some multiples of 4 or 5 per 29..
  4.     y=0
  5.     for x in range(1,n):
  6.         y=y+(x/a)
  7.         #print(y) #enable this one to show stuff important remove first #
  8.     return(y/n)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement