23 EYLÜL 2009, ÇARŞAMBA
yerleşik fonksiyon aç python: mod, bir , bir, w , w, ve r arasındaki fark nedir ?
Python yerleşik open işlevi, mod w, a, w , ve r arasındaki tam fark nedir ?
Özellikle, belgeleri herşeyi bu izin yazılı dosyası, ve diyor ki açılan dosyalar için "ekleme", "yazma" ve "güncelleme" özellikle, ama tanımlamıyor ne bu şartları demek.
CEVAP
23 EYLÜL 2009, ÇARŞAMBA
Açılış modu C için tam olarak aynıfopen()
std kütüphane işlevi.
The BSD fopen
manpage aşağıdaki gibi tanımlıyor
The argument mode points to a string beginning with one of the following
sequences (Additional characters may follow these sequences.):
``r'' Open text file for reading. The stream is positioned at the
beginning of the file.
``r '' Open for reading and writing. The stream is positioned at the
beginning of the file.
``w'' Truncate file to zero length or create text file for writing.
The stream is positioned at the beginning of the file.
``w '' Open for reading and writing. The file is created if it does not
exist, otherwise it is truncated. The stream is positioned at
the beginning of the file.
``a'' Open for writing. The file is created if it does not exist. The
stream is positioned at the end of the file. Subsequent writes
to the file will always end up at the then current end of file,
irrespective of any intervening fseek(3) or similar.
``a '' Open for reading and writing. The file is created if it does not
exist. The stream is positioned at the end of the file. Subse-
quent writes to the file will always end up at the then current
end of file, irrespective of any intervening fseek(3) or similar.
Bunu Paylaş:
@Staticmethod ve @Python classmethod a...
Soyut bir fonksiyon ve bir fonksiyonun...
Eski stil ve yeni stil Python sınıflar...
Python 2'de range ve xrange fonksiyonl...
bir İfade ve Python ile Deyim arasında...