10 lines
184 B
Python
Raw Normal View History

from __future__ import annotations
class DataFrame:
def to_html(
self,
index: bool = ...,
header: bool = ...,
na_rep: str = ...,
) -> str: ...