FixedWidthTwoLine

class astropy.io.ascii.FixedWidthTwoLine(position_line=1, position_char='-', delimiter_pad=None, bookend=False)[ソース]

ベースクラス: astropy.io.ascii.fixedwidth.FixedWidth

2つのタイトル行を有する固定幅テーブル。

第1のタイトル行は列名を定義し、第2の行は列位置を暗黙的に定義する。

例:

# Typical case with column extent defined by ---- under column names.

 col1    col2         <== header_start = 0
-----  ------------   <== position_line = 1, position_char = "-"
  1     bee flies     <== data_start = 2
  2     fish swims

# Pretty-printed table

+------+------------+
| Col1 |   Col2     |
+------+------------+
|  1.2 | "hello"    |
|  2.4 | there world|
+------+------------+

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