Python Forum
rows from sql query need to write to a file as columns
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
rows from sql query need to write to a file as columns
#7
(Oct-08-2021, 10:54 PM)sjcsvatt Wrote: I didn't understand your code, ... Where is the query out being passed to the for loop?? could you please elaborate?
test.txt:
Output:
hello, world 1065, Street Level 4 car, 12456
Quote:I don't want brackets and single quotes over the text value
Show a sample of how input qry_result look and what data type it is.
By output it look something liker this.
>>> s = ('1065', "'Street Level 4'")
>>> # Clean up
>>> s = ', '.join(s)
>>> s
"1065, 'Street Level 4'"
>>> s.replace("'", '')
'1065, Street Level 4' 
Reply


Messages In This Thread
RE: rows from sql query need to write to a file as columns - by snippsat - Oct-09-2021, 12:45 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  What does .flush do? How can I change this to write to the file? Pedroski55 3 164 Apr-22-2024, 01:15 PM
Last Post: snippsat
  Last record in file doesn't write to newline gonksoup 3 424 Jan-22-2024, 12:56 PM
Last Post: deanhystad
  Create Choices from .ods file columns cspower 3 601 Dec-28-2023, 09:59 PM
Last Post: deanhystad
  write to csv file problem jacksfrustration 11 1,528 Nov-09-2023, 01:56 PM
Last Post: deanhystad
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 1,452 Nov-09-2023, 10:56 AM
Last Post: mg24
  Create csv file with 4 columns for process mining thomaskissas33 3 753 Nov-06-2023, 09:36 PM
Last Post: deanhystad
  How do I read and write a binary file in Python? blackears 6 6,604 Jun-06-2023, 06:37 PM
Last Post: rajeshgk
  Reading data from excel file –> process it >>then write to another excel output file Jennifer_Jone 0 1,106 Mar-14-2023, 07:59 PM
Last Post: Jennifer_Jone
  Read text file, modify it then write back Pavel_47 5 1,594 Feb-18-2023, 02:49 PM
Last Post: deanhystad
  Converting a json file to a dataframe with rows and columns eyavuz21 13 4,461 Jan-29-2023, 03:59 PM
Last Post: eyavuz21

Forum Jump:

User Panel Messages

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