hello,
As part of a procedure I've a number sequences like this:
<Python>
if Print_Info: print Datafile.readli ne()
else: Datafile.readli ne()
</Python>
Is there a more compressed way to write such a statement,
especially I dislike the redundancy "Datafile.readl ine()".
thanks,
Stef Mientki
As part of a procedure I've a number sequences like this:
<Python>
if Print_Info: print Datafile.readli ne()
else: Datafile.readli ne()
</Python>
Is there a more compressed way to write such a statement,
especially I dislike the redundancy "Datafile.readl ine()".
thanks,
Stef Mientki
Comment