基本的な情報¶
- class astropy.io.ascii.Basic[ソース]¶
ベースクラス:
astropy.io.ascii.core.BaseReader
文字で区切られたテーブルは、上部に1つのタイトル行しかありません。
注釈文字(デフォルト値=‘#’)を最初の非スペース文字の先頭とする行は注釈である。
例表:
# Column definition is the first uncommented line # Default delimiter is the space character. apples oranges pears # Data starts after the header column definition, blank lines ignored 1 2 3 4 5 6