Advertisement
MKbear

Python_4

Jun 10th, 2022
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. from numpy import *
  2.  
  3.  
  4. def main(n):
  5.     if n == 0:
  6.         return -0.05
  7.     elif n >= 1:
  8.         return pow(cos(main(n-1)), 2) - main(n-1)
  9.  
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement