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
02a807eb
Kaydet (Commit)
02a807eb
authored
Kas 12, 2010
tarafından
Terry Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
--no commit message
--no commit message
üst
c7399d0a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
introduction.rst
Doc/tutorial/introduction.rst
+6
-5
No files found.
Doc/tutorial/introduction.rst
Dosyayı görüntüle @
02a807eb
.. _tut-informal:
.. _tut-informal:
**********************************
An Informal Introduction to Python
...
...
@@ -220,9 +220,10 @@ the following:
Or, strings can be surrounded in a pair of matching triple-quotes: ``"""`` or
``'''``. End of lines do not need to be escaped when using triple-quotes, but
they will be included in the string. ::
they will be included in the string. So the following uses one escape to
avoid an unwanted initial blank line. ::
print("""
print("""
\
Usage: thingy [OPTIONS]
-h Display this usage message
-H hostname Hostname to connect to
...
...
@@ -616,7 +617,7 @@ This example introduces several new features.
>>> a, b = 0, 1
>>> while b < 1000:
... print(b, end='
')
... print(b, end='
,
')
... a, b = b, a+b
...
1
1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
1
,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,
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