Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
46a16f29
Kaydet (Commit)
46a16f29
authored
Nis 23, 2004
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF bug #940579: section 5.10: 'not' returns boolean, not int
üst
60247221
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ref5.tex
Doc/ref/ref5.tex
+4
-4
No files found.
Doc/ref/ref5.tex
Dosyayı görüntüle @
46a16f29
...
...
@@ -977,8 +977,8 @@ as false: \code{None}, numeric zero of all types, empty sequences
(strings, tuples and lists), and empty mappings (dictionaries). All
other values are interpreted as true.
The operator
\keyword
{
not
}
yields
\code
{
1
}
if its argument is false,
\code
{
0
}
otherwise.
The operator
\keyword
{
not
}
yields
\code
{
True
}
if its argument is false,
\code
{
False
}
otherwise.
\opindex
{
not
}
The expression
\code
{
\var
{
x
}
and
\var
{
y
}}
first evaluates
\var
{
x
}
; if
...
...
@@ -992,13 +992,13 @@ evaluated and the resulting value is returned.
\opindex
{
or
}
(Note that neither
\keyword
{
and
}
nor
\keyword
{
or
}
restrict the value
and type they return to
\code
{
0
}
and
\code
{
1
}
, but rather return the
and type they return to
\code
{
False
}
and
\code
{
True
}
, but rather return the
last evaluated argument.
This is sometimes useful, e.g., if
\code
{
s
}
is a string that should be
replaced by a default value if it is empty, the expression
\code
{
s or 'foo'
}
yields the desired value. Because
\keyword
{
not
}
has to
invent a value anyway, it does not bother to return a value of the
same type as its argument, so e.g.,
\code
{
not 'foo'
}
yields
\code
{
0
}
,
same type as its argument, so e.g.,
\code
{
not 'foo'
}
yields
\code
{
False
}
,
not
\code
{
''
}
.)
\section
{
Lambdas
\label
{
lambdas
}}
...
...
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