FixedWidth

class astropy.io.ascii.FixedWidth(col_starts=None, col_ends=None, delimiter_pad=' ', bookend=True)[ソース]

ベースクラス: astropy.io.ascii.basic.Basic

固定幅のテーブルは,列名と位置を定義する単一の見出し行を持つ.

例:

# Bar delimiter in header and data

|  Col1 |   Col2      |  Col3 |
|  1.2  | hello there |     3 |
|  2.4  | many words  |     7 |

# Bar delimiter in header only

Col1 |   Col2      | Col3
1.2    hello there    3
2.4    many words     7

# No delimiter with column positions specified as input

Col1       Col2Col3
 1.2hello there   3
 2.4many words    7

ご参照ください 固定幅画廊 具体的な用法例については、参照されたい。