Python Forum
problems with writting a text file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
problems with writting a text file
#4
There's something speciously wrong there.
Not sure, but somewhere there is an obvious reason.

Here:
# open for appending at end of file
>>> f=open(new,'a+')
# Write at end of file
>>> f.write('Hello World')
# file pointer is now at end of file
>>> f.read()
you read beyond end of file
I would expect to see an end of file error, but there is none!
Reply


Messages In This Thread
problems with writting a text file - by sunny - Feb-23-2019, 03:15 PM
RE: problems with writting a text file - by Larz60+ - Feb-23-2019, 04:59 PM
RE: problems with writting a text file - by sunny - Feb-23-2019, 08:12 PM
RE: problems with writting a text file - by Larz60+ - Feb-23-2019, 11:01 PM
RE: problems with writting a text file - by stullis - Feb-23-2019, 11:35 PM
RE: problems with writting a text file - by stranac - Feb-24-2019, 01:09 AM
RE: problems with writting a text file - by Larz60+ - Feb-24-2019, 10:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Sad problems with reading csv file. MassiJames 3 721 Nov-16-2023, 03:41 PM
Last Post: snippsat
Thumbs Up Need to compare the Excel file name with a directory text file. veeran1991 1 1,169 Dec-15-2022, 04:32 PM
Last Post: Larz60+
  Upgrading from 2 to 3 and having file write problems KenHorse 2 1,540 May-08-2022, 09:47 PM
Last Post: KenHorse
  Modify values in XML file by data from text file (without parsing) Paqqno 2 1,754 Apr-13-2022, 06:02 AM
Last Post: Paqqno
  Converted Pipe Delimited text file to CSV file atomxkai 4 7,114 Feb-11-2022, 12:38 AM
Last Post: atomxkai
  Problems with inserting images into an Excel File FightingFarmer 2 3,461 May-12-2021, 10:03 PM
Last Post: FightingFarmer
  Problems Sorting Data in an External File (.txt) Superlegend21 1 4,370 Dec-27-2020, 10:06 PM
Last Post: Superlegend21
  [split] How to convert the CSV text file into a txt file Pinto94 5 3,439 Dec-23-2020, 08:04 AM
Last Post: ndc85430
  Saving text file with a click: valueerror i/o operation on closed file vizier87 5 4,497 Nov-16-2020, 07:56 AM
Last Post: Gribouillis
  saving data from text file to CSV file in python having delimiter as space K11 1 2,441 Sep-11-2020, 06:28 AM
Last Post: bowlofred

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020