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
abffe71d
Kaydet (Commit)
abffe71d
authored
Ara 15, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#4667: fix some 2.x leftovers in the tutorial.
üst
8206695c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
datastructures.rst
Doc/tutorial/datastructures.rst
+4
-2
modules.rst
Doc/tutorial/modules.rst
+1
-1
No files found.
Doc/tutorial/datastructures.rst
Dosyayı görüntüle @
abffe71d
...
...
@@ -440,9 +440,9 @@ pair with ``del``. If you store using a key that is already in use, the old
value associated with that key is forgotten. It is an error to extract a value
using a non-existent key.
P
re
forming ``list(d.keys())`` on a dictionary returns a list of all the keys
P
er
forming ``list(d.keys())`` on a dictionary returns a list of all the keys
used in the dictionary, in arbitrary order (if you want it sorted, just apply
the :meth:`sort
` method to the list of keys
). To check whether a single key is
the :meth:`sort
ed` function instead
). To check whether a single key is
in the dictionary, use the :keyword:`in` keyword.
Here is a small example using a dictionary::
...
...
@@ -458,6 +458,8 @@ Here is a small example using a dictionary::
>>> tel
{'guido': 4127, 'irv': 4127, 'jack': 4098}
>>> list(tel.keys())
['irv', 'guido', 'jack']
>>> sorted(tel.keys())
['guido', 'irv', 'jack']
>>> 'guido' in tel
True
...
...
Doc/tutorial/modules.rst
Dosyayı görüntüle @
abffe71d
...
...
@@ -112,7 +112,7 @@ you have already defined.
For
efficiency
reasons
,
each
module
is
only
imported
once
per
interpreter
session
.
Therefore
,
if
you
change
your
modules
,
you
must
restart
the
interpreter
--
or
,
if
it
's just one module you want to test interactively,
use :func:`
reload`, e.g. ``
reload(modulename)``.
use :func:`
imp.reload`, e.g. ``import imp; imp.
reload(modulename)``.
.. _tut-modulesasscripts:
...
...
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