Tagged Questions

3
votes
5answers
789 views

Simple data storing in Python

I'm looking for a simple solution using Python to store data as a flat file, such that each line is a string representation of an array that can be easily parsed. I'm sure python has library for ...
0
votes
6answers
161 views

How to read a file in python which has newline and tabs into a string?

I am trying to read a file which has tabs and newline etc and the data is JSON format. When I read it using file.read()/readlines() etc, all the newlines and tabs are also read. I have tried ...
0
votes
1answer
140 views

Please help me with this program to parse a file into an XML file

To parse an input text file and generate a) an XML file and b) an SVG (also XML) file. The input text file (input.txt) contains the description of a number of produce distribution centers and storage ...