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
38e083bc
Commit
38e083bc
authored
Feb 20, 2001
by
Moshe Zadka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed to use the fact that str(long) doesn't produce a trailing L
Reindented
parent
754ba589
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
Demo/scripts/pi.py
Demo/scripts/pi.py
+16
-16
No files found.
Demo/scripts/pi.py
View file @
38e083bc
...
...
@@ -11,23 +11,23 @@
import
sys
def
main
():
k
,
a
,
b
,
a1
,
b1
=
2L
,
4L
,
1L
,
12L
,
4L
while
1
:
# Next approximation
p
,
q
,
k
=
k
*
k
,
2L
*
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
while
d
==
d1
:
output
(
d
)
a
,
a1
=
10L
*
(
a
%
b
),
10L
*
(
a1
%
b1
)
d
,
d1
=
a
/
b
,
a1
/
b1
k
,
a
,
b
,
a1
,
b1
=
2L
,
4L
,
1L
,
12L
,
4L
while
1
:
# Next approximation
p
,
q
,
k
=
k
*
k
,
2L
*
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
while
d
==
d1
:
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
()
# Use write() to avoid spaces between the digits
# Use str() to avoid the 'L'
sys
.
stdout
.
write
(
str
(
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