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
9c27c18c
Kaydet (Commit)
9c27c18c
authored
Haz 02, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #23116: Merge from 3.5
üst
9cd39a17
0a5120e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
controlflow.rst
Doc/tutorial/controlflow.rst
+3
-3
No files found.
Doc/tutorial/controlflow.rst
Dosyayı görüntüle @
9c27c18c
...
...
@@ -364,7 +364,7 @@ The most useful form is to specify a default value for one or more arguments.
This creates a function that can be called with fewer arguments than it is
defined to allow. For example::
def ask_ok(prompt, retries=4,
complaint='Yes or no, please
!'):
def ask_ok(prompt, retries=4,
reminder='Please try again
!'):
while True:
ok = input(prompt)
if ok in ('y', 'ye', 'yes'):
...
...
@@ -373,8 +373,8 @@ defined to allow. For example::
return False
retries = retries - 1
if retries < 0:
raise
OSError('uncooperative user
')
print(
complaint
)
raise
ValueError('invalid user response
')
print(
reminder
)
This function can be called in several ways:
...
...
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