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
a12b6820
Kaydet (Commit)
a12b6820
authored
Eki 06, 2013
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add missing list methods. Found by Leonardo Pereira on docs@.
üst
2070e83f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
datastructures.rst
Doc/tutorial/datastructures.rst
+12
-0
No files found.
Doc/tutorial/datastructures.rst
Dosyayı görüntüle @
a12b6820
...
...
@@ -54,6 +54,12 @@ objects:
will see this notation frequently in the Python Library Reference.)
.. method:: list.clear()
:noindex:
Remove all items from the list. Equivalent to ``del a[:]``.
.. method:: list.index(x)
:noindex:
...
...
@@ -79,6 +85,12 @@ objects:
Reverse the elements of the list in place.
.. method:: list.copy()
:noindex:
Return a shallow copy of the list. Equivalent to ``a[:]``.
An example that uses most of the list methods::
>>> a = [66.25, 333, 333, 1, 1234.5]
...
...
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