This website requires JavaScript.
Explore
Help
Register
Sign In
Bhasher
/
linfo2335-programming-paradigms
Watch
1
Star
0
Fork
You've already forked linfo2335-programming-paradigms
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
master
linfo2335-programming-parad...
/
project-3
/
regex
/
code
/
code33.py
6 lines
130 B
Python
Raw
Permalink
Blame
History
def
approx_pi
(
i
)
:
i
=
11
pi
=
0
for
j
in
range
(
i
+
1
)
:
pi
+
=
(
(
(
-
1
)
*
*
pi
)
/
(
(
2
*
pi
)
+
1
)
)
return
(
4
*
pi
)
Reference in New Issue
View Git Blame
Copy Permalink