status_printο
- bapsflib._hdf.utils.hdfoverview.status_print(first: str, second: str, third: str, indent=0, onetwo_pad=' ', second_tab=55)ο
Stylistic status printing for
HDFOverview.- Parameters:
first (
str) β string for 1st columnsecond (
str) β string for 2nd columnthird (
str) β string for 3rd columnindent (
int, optional) β number of indentations for 1st column display (DEFAULT0)onetwo_pad (
str, optional) β one character string for pad style between 1st and 2nd column (DEFAULT' ')second_tab (
int, optional) β number of characters between start of string and start of 2nd column (DEFAULT55)
Examples
>>> status_print('one', 'two', 'three', second_tab=15) one two three >>> status_print('one', 'two', 'three', second_tab=15, ... indent=2, onetwo_pad='~') | +-- one two three