Python Forum
Extracting data from tweets and saving it as CSV
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Extracting data from tweets and saving it as CSV
#7
I am afraid that wavic it already solved for you.

if you are trying to print your header to out_file with line
 print >> out_file, 'ids, text, lang, geo, place'
then replace it with wavic's
 print('ids, text, lang, geo, place', file=out_file)
file = out_file parameter redirects printing to your file.

Actually now I noticed that if you are using old python (pre 2.7?), then print is not function, but statement. In that case you will have to use
out_file.write('ids, text, lace, geo, place\n')
for "printing" to file

And if you are using python3, then your last three lines will trigger errors, because there is no print statement in python3 and you will need to add parentheses there.
Reply


Messages In This Thread
RE: Extracting data from tweets and saving it as CSV - by zivoni - Feb-24-2017, 11:08 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Extracting the correct data from a CSV file S2G 6 340 Jun-03-2024, 04:50 PM
Last Post: snippsat
  Extracting Data into Columns using pdfplumber arvin 17 6,199 Dec-17-2022, 11:59 AM
Last Post: arvin
  Need help formatting dataframe data before saving to CSV cubangt 16 6,589 Jul-01-2022, 12:54 PM
Last Post: cubangt
  Extracting Data from tables DataExtrator 0 1,208 Nov-02-2021, 12:24 PM
Last Post: DataExtrator
  extracting data ajitnayak1987 1 1,623 Jul-29-2021, 06:13 AM
Last Post: bowlofred
  Extracting and printing data ajitnayak1987 0 1,468 Jul-28-2021, 09:30 AM
Last Post: ajitnayak1987
  Extracting unique pairs from a data set based on another value rybina 2 2,419 Feb-12-2021, 08:36 AM
Last Post: rybina
Thumbs Down extracting data/strings from Word doc mikkelibsen 1 2,011 Feb-10-2021, 11:06 AM
Last Post: Larz60+
  Extracting data without showing dtype, name etc. tgottsc1 3 4,817 Jan-10-2021, 02:15 PM
Last Post: buran
  Extracting data from a website tgottsc1 2 2,343 Jan-09-2021, 08:14 PM
Last Post: tgottsc1

Forum Jump:

User Panel Messages

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