If root.nsmap contains the table namespace prefix then you could:
root.xpath('.//table:table', namespaces=root.nsmap)
findall(path) accepts {namespace}name syntax instead of namespace:name. Therefore path should be preprocessed using namespace dictionary to the {namespace}name form before passing it to findall().