You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
output text lines are filtered by bool(),
so, empty text lines (lines that do not contain a \n) are not filtered out, but e.g. an iterable with pyline.pyline that returns e.g. zero, [], () will be filtered out.
(... see pandas for handling N/A, None)
does this trim a blank trailing line ([...])?
echo -e '\n\n' | pyline.py prints two(+1 from echo) blank lines
echo -e '0' | pyline.py prints '0' (+1 blank line from echo) [because it's not casted to e.g. int]
The text was updated successfully, but these errors were encountered:
output text lines are filtered by bool(),
so, empty text lines (lines that do not contain a
\n
) are not filtered out, but e.g. an iterable with pyline.pyline that returns e.g. zero, [], () will be filtered out.echo -e '\n\n' | pyline.py
prints two(+1 from echo) blank linesecho -e '0' | pyline.py
prints '0' (+1 blank line from echo) [because it's not casted to e.g. int]The text was updated successfully, but these errors were encountered: