Python Forum
files creation question, any help plz ?
Thread Rating:
  • 2 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
files creation question, any help plz ?
#10
(Apr-12-2017, 01:43 PM)wavic Wrote: Let's break it to simple tasks.
I am supposing that each line is formated like: id tweet text

# open the input file and read it.
with open('input.txt', 'r') as in_file:

    # read each line
    for line in in_file:

        #open an output file for writing
        #get the first element for the output file's name
        elements = line.split()
        with open('{}.txt'.format(elements[0]), 'w') as out_file:
                
            # write the rest of the line into the file
            out_file.write(' '.join(elements[1:])) # 
It's basically this.

man I really was Depressed, thanks aloooooot

(Apr-12-2017, 01:43 PM)wavic Wrote: Let's break it to simple tasks.
I am supposing that each line is formated like: id tweet text

# open the input file and read it.
with open('input.txt', 'r') as in_file:

    # read each line
    for line in in_file:

        #open an output file for writing
        #get the first element for the output file's name
        elements = line.split()
        with open('{}.txt'.format(elements[0]), 'w') as out_file:
                
            # write the rest of the line into the file
            out_file.write(' '.join(elements[1:])) # 
It's basically this.

I tried it and it worked perfectly, but is there any way to specify the path that new files  will go in?
Reply


Messages In This Thread
RE: files creation question, any help plz ? - by Qubayel - Apr-12-2017, 02:10 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Newbie question about switching between files - Python/Pycharm Busby222 3 719 Oct-15-2023, 03:16 PM
Last Post: deanhystad
  Making a question answering chatbot based on the files I upload into python. Joejones 1 1,405 May-19-2023, 03:09 PM
Last Post: deanhystad
  Unable to disable creation of __pycache__ and .pyc files kpyeri 1 8,740 Oct-03-2018, 11:22 AM
Last Post: Larz60+
  Question About Files SheeppOSU 1 2,019 Jun-24-2018, 11:41 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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