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

I tried your code and I got the following error message. I'm using Python 2.7:

invalid syntax: test.py, line 4, pos 39 in file C:\python-scripts\test.py
f_out.write(f'{line} {index}\n')

The print operation is doing this correctly:

f = open("password.txt", "rt")
s = f.read()
f = open("password2.txt", "wt")

for count in range(1900,2021):
    s+str(count)
    print({s},{count})
But how do I write this operation to a file. I only have one line in the file which is password.

Thanks
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,724 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,068 Nov-29-2020, 01:38 PM
Last Post: DPaul
  Using an integer to manipulate a string/text variable rexyboy2121 1 1,809 Apr-22-2020, 01:37 AM
Last Post: michael1789
  Trying to extract Only the capitol letters from a string of text Jaethan 2 2,216 Feb-27-2020, 11:19 PM
Last Post: Marbelous
  program that search string in text file and do something alon30 1 3,291 Aug-04-2017, 08:10 AM
Last Post: buran
  How to find exact matching string from the text desul 5 4,144 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