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
4408ed5d
Kaydet (Commit)
4408ed5d
authored
May 08, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Tiny utility prints the latest set of reserved words.
üst
78b21cf4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
reswords.py
Doc/ref/reswords.py
+32
-0
No files found.
Doc/ref/reswords.py
0 → 100644
Dosyayı görüntüle @
4408ed5d
"""Spit out the Python reserved words table."""
import
string
raw_words
=
"""
and del for is raise
assert elif from lambda return
break else global not try
class except if or while
continue exec import pass
def finally in print
"""
ncols
=
5
def
main
():
words
=
string
.
split
(
raw_words
)
words
.
sort
()
colwidth
=
1
+
max
(
map
(
len
,
words
))
nwords
=
len
(
words
)
nrows
=
(
nwords
+
ncols
-
1
)
/
ncols
for
irow
in
range
(
nrows
):
for
icol
in
range
(
ncols
):
i
=
irow
+
icol
*
nrows
if
0
<=
i
<
nwords
:
word
=
words
[
i
]
else
:
word
=
""
print
"
%-*
s"
%
(
colwidth
,
word
),
print
main
()
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