Python Forum
Need help amalgamating two scripts
Thread Rating:
  • 2 Vote(s) - 2.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need help amalgamating two scripts
#1
I have two scripts, the first which reads in a file and outputs a parsed version and then the second which takes the parsed version and parses it further.
How can I amalgamate these two to be a single script.

File 1:

with open("debt.txt", "r") as infile, open("outting.txt", "w") as outfile:
    data = infile.read()
    data = data.replace("£", "")
    outfile.write(data)
File 2:

with open("outting.txt", "r") as infile, open("out.txt", "w") as outfile:
    for line in infile:
        outfile.write(line.split()[1] + "\n")
Reply


Messages In This Thread
Need help amalgamating two scripts - by brocq_18 - Mar-07-2017, 02:24 PM
RE: Need help amalgamating two scripts - by Larz60+ - Mar-07-2017, 02:37 PM
RE: Need help amalgamating two scripts - by wavic - Mar-07-2017, 02:45 PM
RE: Need help amalgamating two scripts - by wavic - Mar-07-2017, 04:46 PM
RE: Need help amalgamating two scripts - by Ofnuts - Mar-20-2017, 02:02 PM
RE: Need help amalgamating two scripts - by wavic - Mar-20-2017, 12:00 PM
RE: Need help amalgamating two scripts - by Ofnuts - Mar-21-2017, 12:51 PM

Forum Jump:

User Panel Messages

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