From Python for Java Programmers

Collections: Spliting Strings

Extracting Multiple Lines

Python provides a convient method for extracting the entire contents of a file and storing it into a string list

lines = infile.readlines()
 

Consider the following example program which produces a double spaced version of the text file myreport.txt by inserting a blank line between each existing line.

dblspace.py

Retrieved from http://python4java.necaise.org/Collections/SplitingStrings
Page last modified on September 17, 2006, at 06:20 PM