A.len(list)B.list.length()C.list.size()D.list.len()
A.class MyException(Exception):passB.create Exception(’MyException’)C.exception MyExceptionD.new Exception(’MyException’)
A.re.match(pattern,string)B.string.match(pattern)C.pattern.match(string)D.regex.match(string,pattern)