Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0b2b440a
Commit
0b2b440a
authored
Aug 31, 1992
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all Long constants have an L suffix, not l;
added an output() function to move the I/O out of the algorithm
parent
0cc19450
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
Demo/scripts/pi.py
Demo/scripts/pi.py
+11
-8
No files found.
Demo/scripts/pi.py
View file @
0b2b440a
...
...
@@ -11,20 +11,23 @@
import
sys
def
main
():
k
,
a
,
b
,
a1
,
b1
=
2
l
,
4
l
,
1
l
,
12
l
,
4
l
k
,
a
,
b
,
a1
,
b1
=
2
L
,
4L
,
1L
,
12L
,
4L
while
1
:
# Next approximation
p
,
q
,
k
=
k
*
k
,
2
l
*
k
+
1
l
,
k
+
1
l
p
,
q
,
k
=
k
*
k
,
2
L
*
k
+
1L
,
k
+
1L
a
,
b
,
a1
,
b1
=
a1
,
b1
,
p
*
a
+
q
*
a1
,
p
*
b
+
q
*
b1
# Print common digits
d
,
d1
=
a
/
b
,
a1
/
b1
#print a, b, a1, b1
while
d
==
d1
:
# Use write() to avoid spaces between the digits
sys
.
stdout
.
write
(
`int(d)`
)
# Flush so the output is seen immediately
sys
.
stdout
.
flush
()
a
,
a1
=
10
l
*
(
a
%
b
),
10
l
*
(
a1
%
b1
)
output
(
d
)
a
,
a1
=
10L
*
(
a
%
b
),
10L
*
(
a1
%
b1
)
d
,
d1
=
a
/
b
,
a1
/
b1
def
output
(
d
):
# Use write() to avoid spaces between the digits
# Use int(d) to avoid a trailing L after each digit
sys
.
stdout
.
write
(
`int(d)`
)
# Flush so the output is seen immediately
sys
.
stdout
.
flush
()
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment