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
b2d77175
Kaydet (Commit)
b2d77175
authored
Mar 13, 2017
tarafından
Xiang Zhang
Kaydeden (comit)
GitHub
Mar 13, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29756: Improve documentation for list methods that compare items by equality (GH-572)
üst
00425105
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
stdtypes.rst
Doc/library/stdtypes.rst
+1
-1
datastructures.rst
Doc/tutorial/datastructures.rst
+2
-2
No files found.
Doc/library/stdtypes.rst
Dosyayı görüntüle @
b2d77175
...
...
@@ -1084,7 +1084,7 @@ accepts integers that meet the value restriction ``0 <= x <= 255``).
| | also removes it from *s* | |
+------------------------------+--------------------------------+---------------------+
| ``s.remove(x)`` | remove the first item from *s* | \(3) |
| | where ``s[i]
== x``
| |
| | where ``s[i]
`` is equal to *x*
| |
+------------------------------+--------------------------------+---------------------+
| ``s.reverse()`` | reverses the items of *s* in | \(4) |
| | place | |
...
...
Doc/tutorial/datastructures.rst
Dosyayı görüntüle @
b2d77175
...
...
@@ -40,7 +40,7 @@ objects:
.. method:: list.remove(x)
:noindex:
Remove the first item from the list whose value is *x*. It is an error if
Remove the first item from the list whose value is
equal to
*x*. It is an error if
there is no such item.
...
...
@@ -63,7 +63,7 @@ objects:
.. method:: list.index(x[, start[, end]])
:noindex:
Return zero-based index in the list of the first item whose value is *x*.
Return zero-based index in the list of the first item whose value is
equal to
*x*.
Raises a :exc:`ValueError` if there is no such item.
The optional arguments *start* and *end* are interpreted as in the slice
...
...
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