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
f60eeb17
Kaydet (Commit)
f60eeb17
authored
Tem 27, 2006
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Update URL; add example
üst
9ad7a60f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletion
+19
-1
libunicodedata.tex
Doc/lib/libunicodedata.tex
+19
-1
No files found.
Doc/lib/libunicodedata.tex
Dosyayı görüntüle @
f60eeb17
...
...
@@ -18,7 +18,7 @@ this database is based on the \file{UnicodeData.txt} file version
The module uses the same names and symbols as defined by the
UnicodeData File Format 4.1.0 (see
\url
{
http://www.unicode.org/Public/4.1
-Update/UnicodeData-4.1.0
.html
}
). It
\url
{
http://www.unicode.org/Public/4.1
.0/ucd/UCD
.html
}
). It
defines the following functions:
\begin{funcdesc}
{
lookup
}{
name
}
...
...
@@ -140,3 +140,21 @@ the Unicode database (such as IDNA).
\versionadded
{
2.5
}
\end{datadesc}
Examples:
\begin{verbatim}
>>> unicodedata.lookup('LEFT CURLY BRACKET')
u'
{
'
>>> unicodedata.name(u'/')
'SOLIDUS'
>>> unicodedata.decimal(u'9')
9
>>> unicodedata.decimal(u'a')
Traceback (most recent call last):
File "<stdin>", line 1, in ?
ValueError: not a decimal
>>> unicodedata.category(u'A') # 'L'etter, 'u'ppercase
'Lu'
>>> unicodedata.bidirectional(u'
\u
0660') # 'A'rabic, 'N'umber
'AN'
\end{verbatim}
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