Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tabular_data
tabulate.tabulate
1 parent b252fbf commit 98f070aCopy full SHA for 98f070a
stubs/tabulate/tabulate/__init__.pyi
@@ -44,7 +44,8 @@ multiline_formats: dict[str, str]
44
45
def simple_separated_format(separator: str) -> TableFormat: ...
46
def tabulate(
47
- tabular_data: Mapping[str, Iterable[Any]] | Iterable[Iterable[Any]],
+ # The key is converted using str().
48
+ tabular_data: Mapping[Any, Iterable[Any]] | Iterable[Iterable[Any]],
49
headers: str | dict[str, str] | Sequence[str] = (),
50
tablefmt: str | TableFormat = "simple",
51
floatfmt: str | Iterable[str] = "g",
0 commit comments