[Tutor] Reading List from File

Emile van Sebille emile at fenx.com
Thu Jul 31 17:14:46 CEST 2008


S Python wrote:
> Hi Everyone,
>  
> I am trying to read a comma-delimitted list ("aaa","bbb","ccc") 

In this case, the standard library provides csv for parsing comma 
separated files.  It's not the same as rolling your own, but it is made 
specifically for this use case...

Emile



More information about the Tutor mailing list