About the Tutorial



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

 
Parameters 

offset
- This is the position of the read/write pointer within the file. 

whence
- This 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. 
Return Value 
This method does not return any value. 
Example 
The following example shows the usage of seek() 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 
#!/usr/bin/python3 
# Open a file 
fo = open("foo.txt", "rw+") 
print ("Name of the file: ", fo.name) 
line = fo.readlines() 
print ("Read Line: %s" % (line)) 
# Again set the pointer to the beginning 
fo.seek(0, 0) 
line = fo.readline() 
print ("Read Line: %s" % (line)) 
# Close opened file 
fo.close() 
When we run the above program, it produces the following result- 


Python 3 
236 
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'] 
Read Line: This is 1st line 
File tell() Method 
Description 
The method 
tell()
returns the current position of the file read/write pointer within the file. 
Syntax 
Following is the syntax for tell() method- 
fileObject.tell() 
Parameters 
NA 
Return Value 
This method returns the current position of the file read/write pointer within the file. 
Example 
The following example shows the usage of tell() 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 
#!/usr/bin/python3 
fo = open("foo.txt", "r+") 
print ("Name of the file: ", fo.name) 
line = fo.readline() 
print ("Read Line: %s" % (line)) 
pos=fo.tell() 
print ("current position : ",pos) 


Python 3 
237 
# Close opened file 
fo.close() 
When we run the above program, it produces the following result- 
Name of the file: foo.txt 
Read Line: This is 1st line 
Current Position: 18 

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   159   160   161   162   163   164   165   166   ...   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