About the Tutorial



Download 2,85 Mb.
Pdf ko'rish
bet162/234
Sana28.05.2022
Hajmi2,85 Mb.
#614232
1   ...   158   159   160   161   162   163   164   165   ...   234
Bog'liq
python3 tutorial 060821094426

File readlines() Method 
Description 
The method 
readlines()
reads until EOF using readline() and returns a list containing the 
lines. If the optional sizehint argument is present, instead of reading up to EOF, whole 
lines totalling approximately sizehint bytes (possibly after rounding up to an internal buffer 
size) are read. 
An empty string is returned only when EOF is encountered immediately. 
Syntax 
Following is the syntax for readlines() method- 
fileObject.readlines( sizehint ); 
Parameters 
sizehint
- This is the number of bytes to be read from the file. 
Return Value 
This method returns a list containing the lines. 
Example 
The following example shows the usage of readlines() method. 
Assuming that 'foo.txt' file contains following text: 
This is 1st line 
This is 2nd line 
This is 3rd line 
This is 4th line 
This is 5th line 


Python 3 
234 
#!/usr/bin/python3 
# Open a file 
fo = open("foo.txt", "r+") 
print ("Name of the file: ", fo.name) 
line = fo.readlines() 
print ("Read Line: %s" % (line)) 
line = fo.readlines(2) 
print ("Read Line: %s" % (line)) 
# Close opened file 
fo.close() 
When we run above program, it produces following result- 
Name of the file: foo.txt 
Read Line: ['This is 1st line\n', 'This is 2nd line\n',
'This is 3rd line\n', 'This is 4th line\n',
'This is 5th line\n'] 
Read Line:
File seek() Method 
Description 
The method seek() sets the file's current position at the offset. The whence argument is 
optional and defaults to 0, which means absolute file positioning, other values are 1 which 
means seek relative to the current position and 2 means seek relative to the file's end. 
There is no return value. Note that if the file is opened for appending using either 'a' or 
'a+', any seek() operations will be undone at the next write. 
If the file is only opened for writing in append mode using 'a', this method is essentially a 
no-op, but it remains useful for files opened in append mode with reading enabled (mode 
'a+'). 
If the file is opened in text mode using 't', only offsets returned by tell() are legal. Use of 
other offsets causes undefined behavior. 
Note that not all file objects are seekable. 
Syntax 
Following is the syntax for seek() method- 
fileObject.seek(offset[, whence]) 


Python 3 
235 

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   158   159   160   161   162   163   164   165   ...   234




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish