co_filename Description Returns the filename from which the code was compiled. Syntax code.co_filename Return Value #TODO Time Complexity #TODO Example >>> c = compile('2+2', '<string>', 'eval') >>> c.co_filename '<string>' See Also #TODO