contains method

contains

Returns a value indicating whether this collection contains a table with the specified name.

Returns

A value indicating whether this collection contains a table with the specified name.

def contains(self, name):
    ...
Parameter Type Description
name str The case-insensitive name of a table to look for.

contains

Returns a value indicating whether this collection contains the specified table.

Returns

A value indicating whether this collection contains the specified table.

def contains(self, table):
    ...
Parameter Type Description
table DocumentTable A table to look for.

See Also