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
2e8665ae
Commit
2e8665ae
authored
Aug 23, 2005
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More tutorial nits.
parent
71da38b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
Doc/tut/tut.tex
Doc/tut/tut.tex
+9
-9
No files found.
Doc/tut/tut.tex
View file @
2e8665ae
...
...
@@ -114,7 +114,7 @@ easy to experiment with features of the language, to write throw-away
programs, or to test functions during bottom-up program development.
It is also a handy desk calculator.
Python enables programs to written compactly and readably. Programs
Python enables programs to
be
written compactly and readably. Programs
written in Python are typically much shorter than equivalent C or
\Cpp
{}
programs, for several reasons:
\begin{itemize}
...
...
@@ -1754,7 +1754,7 @@ It is an error if there is no such item.
\begin
{
methoddesc
}
[
list
]
{
pop
}{
\optional
{
i
}}
Remove the item at the given position in the list, and return it. If
no index is specified,
\code
{
a.pop
()
}
removes and returns the last item
in the list.
The item is also removed from the list.
(
The square brackets
in the list.
(
The square brackets
around the
\var
{
i
}
in the method signature denote that the parameter
is optional, not that you should type square brackets at that
position. You will see this notation frequently in the
...
...
@@ -1987,9 +1987,9 @@ applied to complex expressions and nested functions:
\section
{
The
\keyword
{
del
}
statement
\label
{
del
}}
There is a way to remove an item from a list given its index instead
of its value: the
\keyword
{
del
}
statement.
Unlike the
\method
{
pop
()
}
)
method which returns a value, the
\keyword
{
del
}
keyword is a statement
and
can also be used to
of its value: the
\keyword
{
del
}
statement.
This differs from the
\method
{
pop
()
}
)
method which returns a value. The
\keyword
{
del
}
statement
can also be used to
remove slices from a list
(
which we did earlier by assignment of an
empty list to the slice
)
. For example:
...
...
@@ -2137,9 +2137,9 @@ which can be any immutable type; strings and numbers can always be
keys. Tuples can be used as keys if they contain only strings,
numbers, or tuples; if a tuple contains any mutable object either
directly or indirectly, it cannot be used as a key. You can't use
lists as keys, since lists can be modified in place using
methods like
\method
{
append
()
}
and
\method
{
extend
()
}
or modified with slice and
indexed assignments
.
lists as keys, since lists can be modified in place using
index assignments, slice assignments, or methods like
\method
{
append
()
}
and
\method
{
extend
()
}
.
It is best to think of a dictionary as an unordered set of
\emph
{
key: value
}
pairs, with the requirement that the keys are unique
...
...
@@ -5646,7 +5646,7 @@ This section explains the ``0.1'' example in detail, and shows how
you can perform an exact analysis of cases like this yourself. Basic
familiarity with binary floating-point representation is assumed.
\dfn
{
Representation error
}
refers to fact that some (most, actually)
\dfn
{
Representation error
}
refers to
the
fact that some (most, actually)
decimal fractions cannot be represented exactly as binary (base 2)
fractions. This is the chief reason why Python (or Perl, C,
\Cpp
,
Java, Fortran, and many others) often won't display the exact decimal
...
...
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