Python Forum
Appending to a text string
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Appending to a text string
#7
Hi All

I think I'm nearly there with the code:

f = open("file.txt", "rt")
s = f.read()
f = open("new-file.txt", "wt")

for count in range(1,201):
    s+=str(count)
    print({s},{count})
   
f.write(s) 
f.close()
However, its printing the string within the file followed by the count, for example its writing to the new-file like this:

password12345678910111213, etc

What I'm looking to achieve is the below:

password1password2password3, etc.

Thank you
Reply


Messages In This Thread
Appending to a text string - by syno7878 - May-02-2020, 03:34 PM
RE: Appending to a text string - by Yoriz - May-02-2020, 03:59 PM
RE: Appending to a text string - by pyzyx3qwerty - May-02-2020, 04:01 PM
RE: Appending to a text string - by syno7878 - May-02-2020, 05:10 PM
RE: Appending to a text string - by Yoriz - May-02-2020, 05:44 PM
RE: Appending to a text string - by snippsat - May-02-2020, 06:01 PM
RE: Appending to a text string - by syno7878 - May-02-2020, 07:08 PM
RE: Appending to a text string - by snippsat - May-02-2020, 09:21 PM
RE: Appending to a text string - by syno7878 - May-03-2020, 09:44 AM
RE: Appending to a text string - by pyzyx3qwerty - May-03-2020, 10:00 AM
RE: Appending to a text string - by snippsat - May-03-2020, 10:05 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Split string into 160-character chunks while adding text to each part iambobbiekings 9 9,733 Jan-27-2021, 08:15 AM
Last Post: iambobbiekings
  Reading a text until matched string and print it as a single line cananb 1 2,069 Nov-29-2020, 01:38 PM
Last Post: DPaul
  Using an integer to manipulate a string/text variable rexyboy2121 1 1,810 Apr-22-2020, 01:37 AM
Last Post: michael1789
  Trying to extract Only the capitol letters from a string of text Jaethan 2 2,218 Feb-27-2020, 11:19 PM
Last Post: Marbelous
  program that search string in text file and do something alon30 1 3,295 Aug-04-2017, 08:10 AM
Last Post: buran
  How to find exact matching string from the text desul 5 4,152 Apr-17-2017, 04:31 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

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