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
/
code1381.py
8 lines
140 B
Python
Raw
Permalink
Blame
History
def
approx_pi
(
i
)
:
n
=
0
pi
=
0
if
n
<
=
i
:
j
=
(
(
-
1
)
*
*
n
)
/
(
(
2
*
n
)
+
1
)
pi
+
=
4
*
j
n
+
=
1
print
(
pi
)
Reference in New Issue
View Git Blame
Copy Permalink