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
b7a10d1b
Kaydet (Commit)
b7a10d1b
authored
Ara 06, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Incorporate suggestions from Aahz.
üst
d25c1c63
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
tut.tex
Doc/tut/tut.tex
+9
-7
No files found.
Doc/tut/tut.tex
Dosyayı görüntüle @
b7a10d1b
...
...
@@ -2,9 +2,6 @@
\usepackage
[T1]
{
fontenc
}
% Things to do:
% Add a section on file I/O
% Write a chapter entitled ``Some Useful Modules''
% --re, math+cmath
% Should really move the Python startup file info to an appendix
\title
{
Python Tutorial
}
...
...
@@ -4397,7 +4394,7 @@ operating system:
\begin
{
verbatim
}
>>> import os
>>> os.system
(
'
copy
/
data
/
mydata.fil
/
backup
/
mydata.fil
'
)
>>> os.system
(
'
time
0
:
02
'
)
0
>>> os.getcwd
()
# Return the current working directory
'C:
\\
Python
24
'
...
...
@@ -4484,9 +4481,7 @@ The most direct way to terminate a script is to use \samp{sys.exit()}.
The
\ulink
{
\module
{
re
}}{
..
/
lib
/
module
-
re.html
}
module provides regular expression tools for advanced string processing.
When only simple capabilities are needed, string methods are preferred
because they are easier to read and debug. However, for more
sophisticated applications, regular expressions can provide succinct,
For complex matching and manipulation, regular expressions offer succinct,
optimized solutions:
\begin
{
verbatim
}
...
...
@@ -4497,6 +4492,13 @@ optimized solutions:
'cat in the hat'
\end
{
verbatim
}
When only simple capabilities are needed, string methods are preferred
because they are easier to read and debug:
\begin
{
verbatim
}
>>> 'tea for too'.replace
(
'too', 'two'
)
'tea for two'
\end
{
verbatim
}
\section
{
Mathematics
\label
{
mathematics
}}
...
...
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