Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
272 views

An algorithm for filtering text files

Imagine you have a .txt file of the following structure: >>> header >>> header >>> header K L M 200 0.1 1 201 0.8 1 202 0.01 3 ... 800 0.4 2 >>> end of file 50 0.1 ...
8
votes
2answers
1k views

Does readlines() return a list or an iterator in Python 3?

I've read in "Dive into Python 3" that "The readlines() method now returns an iterator, so it is just as efficient as xreadlines() was in Python 2". See here: ...
6
votes
3answers
125 views

How do I read a text file into R when each record is a paragraph and some records have 4 fields and others have 6

How can one read in a text file in which each record is a paragraph and each newline denotes separate field. The complication is that some records have 4 lines and some have 6. @DWin nailed my ...
6
votes
3answers
777 views

vi input mode in command line Matlab?

I have these lines in my ~/.inputrc: set editing-mode vi set keymap vi This allows me to use vi keybindings in every program that uses GNU readlines for text input. Examples: python, irb, sftp, ...
5
votes
2answers
1k views

What substitutes xreadlines() in Python 3?

In Python 2, file objects had an xreadlines() method which returned an iterator that would read the file one line at a time. In Python 3, the xreadlines() method no longer exists, and realines() still ...
3
votes
1answer
90 views

How do I read a text file into R when the data is not in a table

I got a very long telephone log as a text file and I have tried to read it into R but it is not really working out. The text has a structure but it is most certainly not a table. Its structure is as ...
3
votes
6answers
201 views

How to avoid using readlines()?

I need to deal with super large txt input files, and I usually use .readlines() to first read the whole file, and turn it into a list. I know it's really memory-cost and can be quite slow, but I also ...
2
votes
4answers
73 views

How do I use only two strings in this program?

My teacher gave me this question: Write a program that does the following: Enter your first name: Peter Enter your last name: Opunga Enter your birth year: 1992 Hi Peter Opunga, you ...
2
votes
3answers
478 views

readline and readlines methods missing from python 3.2?

Did they remove file.readline() and file.readlines() from python 3.2? If yes what did they replace it with?
2
votes
1answer
123 views

How to I read several lines in a file faster using python?

As of now I use the following python code: file = open(filePath, "r") lines=file.readlines() file.close() Say my file has several lines (10,000 or more), then my program becomes slow if I do this ...
2
votes
2answers
1k views

Ignore last \n when using readlines with python

I have a file I read from that looks like: 1 value1 2 value2 3 value3 The file may or may not have a trailing \n in the last line. The code I'm using works great, but if there is an trailing ...
2
votes
6answers
445 views

ungetc in Python

Some file read (readlines()) functions in Python copy the file contents to memory (as a list) I need to process a file that's too large to be copied in memory and as such need to use a file pointer ...
2
votes
3answers
140 views

Collect all not in using Ruby

I have this small snipped of code. I don't know ruby and I think this is a great opportunity to apply it. I want to print all the lines in file e which are not in file c. Each line is a number. ...
1
vote
5answers
58 views

read lines between two specific lines

How would I go about reading all lines between two specific lines? Lets say line 23 is where I want to start, and line 56 is the last line to read, but it is not the end of the file. How would I go ...
1
vote
3answers
253 views

Check if file contains string

So I found this question on here, but I'm having an issue with the output and how to handle it with an if statement. This is what I have, but it's always saying that it's true even if the word monitor ...
1
vote
6answers
117 views

python beginner - how to read contents of several files into unique lists?

I'd like to read the contents from several files into unique lists that I can call later - ultimately, I want to convert these lists to sets and perform intersections and subtraction on them. This ...
1
vote
1answer
363 views

python3: readlines() indices issue?

Python 3.1.2 (r312:79147, Nov 9 2010, 09:41:54) [GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> ...
0
votes
3answers
96 views

Python readline() not working?

I am doing a small program to help me with learning python (which I am very new to). I'm using python 3.2. My question is: In the Python shell, when I enter f = open('filename.txt', 'r') ...
0
votes
1answer
47 views

RJSONIO & Google Geocoding Service to Geocode in R - Some minor issues

This is a very simple geocoding example. However, this code when runs, throws warnings and data.json is empty - data.json <- ...
0
votes
4answers
69 views

Python - Write To Beginning and End of Every Line in TXT

I'm currently looking for a way to write to beginning and end of every line of a TXT file in Python. For example, Current TXT document: Jimmy Was Here Write the 1st VALUE to the beginning of every ...
0
votes
5answers
98 views

Is .append() time-consuming?

I've been manipulating huge text files these days. Sometimes I need to delete lines. My way of doing is like below: f=open('txt','r').readlines() list=[] for line in f: if blablablabla: ...
0
votes
3answers
1k views

C# how to convert File.ReadLines into string array?

The question that I have is regarding converting the process of reading lines from a text file into an array instead of just reading it. The error in my codes appear at string[] lines = ...
-2
votes
3answers
215 views

Help me speed-up this code - Python

Guys i am writing this program that goes through list of tweets and returns words which was use the most. I want to make it faster but I wonder if you can help point out some problems or areas ...