Kent Johnson wrote:
>     dlst = os.listdir(pname)
>     if len(dlst):
>       for dlf in dlst:
> 
> There is no need for the if(dlst); if the list is empty the iteration will do 
> nothing. You can write this as
>     for dlf in os.listdir(pname):

   Though it is quite distant, there is an else statement which makes 
the if construct a requierement.

Javier

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to