Python Forum
How to add 1 in a text file ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to add 1 in a text file ?
#2
Use code tag BBcode help,use Ctrl+Shift+v when copy in to preserve indentation.
with open('data.txt') as f,open('new.txt', 'w') as f_out:
    lst = [i.strip() for i in f]
    lst.append('test 4')
    f_out.write('\n'.join(lst))
To append to existing file.
with open('data.txt', 'a') as f:
    f.write('test 4\n')
Reply


Messages In This Thread
How to add 1 in a text file ? - by jacklee26 - Nov-04-2017, 01:27 PM
RE: How to add 1 in a text file ? - by snippsat - Nov-04-2017, 04:16 PM
RE: How to add 1 in a text file ? - by jacklee26 - Nov-04-2017, 09:46 PM
RE: How to add 1 in a text file ? - by Larz60+ - Nov-05-2017, 12:24 AM
RE: How to add 1 in a text file ? - by jacklee26 - Nov-05-2017, 05:24 AM
RE: How to add 1 in a text file ? - by Larz60+ - Nov-05-2017, 08:47 AM
RE: How to add 1 in a text file ? - by buran - Nov-05-2017, 08:56 AM
RE: How to add 1 in a text file ? - by jacklee26 - Nov-06-2017, 01:06 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Thumbs Up Need to compare the Excel file name with a directory text file. veeran1991 1 1,165 Dec-15-2022, 04:32 PM
Last Post: Larz60+
  Modify values in XML file by data from text file (without parsing) Paqqno 2 1,742 Apr-13-2022, 06:02 AM
Last Post: Paqqno
  Converted Pipe Delimited text file to CSV file atomxkai 4 7,081 Feb-11-2022, 12:38 AM
Last Post: atomxkai
  [split] How to convert the CSV text file into a txt file Pinto94 5 3,430 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,478 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,437 Sep-11-2020, 06:28 AM
Last Post: bowlofred
  Web Form to Python Script to Text File to zip file to web wfsteadman 1 2,170 Aug-09-2020, 02:12 PM
Last Post: snippsat
  Convert Excel file to Text file marvel_plato 6 19,893 Jul-17-2020, 01:45 PM
Last Post: marvel_plato
  Rename file from value in text file Nuge93 1 2,208 Jan-20-2020, 03:50 PM
Last Post: gruntfutuk
  Trying to make column based file from text file scor1pion 7 3,537 Jul-16-2019, 02:43 PM
Last Post: scor1pion

Forum Jump:

User Panel Messages

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