Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from math import *
- def main(n):
- if n == 0:
- return -0.04
- if n >= 1:
- return main(n - 1) ** 2 - cos(main(n - 1))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement