turn text lines into a list

Reinhold Birkenfeld reinhold-birkenfeld-nospam at wolke7.net
Mon Jun 27 06:43:52 EDT 2005


Xah Lee wrote:
> i have a large number of lines i want to turn into a list.
> In perl, i can do
> 
> @corenames=qw(
> rb_basic_islamic
> sq1_pentagonTile
> sq_arc501Tile
> sq_arc503Tile
> );
> 
> use Data::Dumper;
> print Dumper(\@corenames);
> 
> ----------
> is there some shortcut to turn lines into list in Python?

str.splitlines



More information about the Python-list mailing list