Message337830
| Author |
Cavad Salmanov |
| Recipients |
Cavad Salmanov |
| Date |
2019年03月13日.02:33:33 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1552444414.13.0.113596539845.issue36278@roundup.psfhosted.org> |
| In-reply-to |
| Content |
I created a new file for researching truncate() method. and I writed this text:
alma
armud
heyva
nar
qarpiz
yemis
I wanted to delete all the text apart from first line by truncate method.
I writed these codes on python idle:
__________________________________________
#First, I read text for showing it's content
>>> dosya = open('deneme.txt','r')
>>> dosya.read()
'alma\narmud\nheyva\nnar\nqarpiz\nyemis'
>>> dosya.close()
#Then writing codes for operation which I wanted
>>> dosya = open('deneme.txt','r+')
>>> dosya.readline()
'alma\n'
>>> dosya.tell()
6
>>> dosya.truncate()
38
>>> dosya.seek(0)
0
>>> dosya.read()
'alma\narmud\nheyva\nnar\nqarpiz\nyemis'
>>> dosya.close()
#I thought I must closed the file, then read again:
#Then I saw nothing has changed
>>> dosya = open('deneme.txt','r')
>>> dosya.read()
'alma\narmud\nheyva\nnar\nqarpiz\nyemis'
>>> dosya.close()
#But when I writed codes in this way, it is worked
>>> dosya = open('deneme.txt','r+')
>>> dosya.readline()
'alma\n'
>>> dosya.tell()
6
>>> dosya.seek(6)
6
>>> dosya.truncate()
6
>>> dosya.close()
>>> dosya = open('deneme.txt','r')
>>> dosya.read()
'alma\n'
# I was on 6th byte in both. But it is worked which I used seek() #method. I think both of them were returnden same things |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2019年03月13日 02:33:34 | Cavad Salmanov | set | recipients:
+ Cavad Salmanov |
| 2019年03月13日 02:33:34 | Cavad Salmanov | set | messageid: <1552444414.13.0.113596539845.issue36278@roundup.psfhosted.org> |
| 2019年03月13日 02:33:34 | Cavad Salmanov | link | issue36278 messages |
| 2019年03月13日 02:33:33 | Cavad Salmanov | create |
|