Python What error occurs when you execute the following Python code snippet? apple = mango SyntaxError TypeError ValueError NameError SyntaxError TypeError ValueError NameError ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. 5 or less exactly 5 5 or more exactly 4 5 or less exactly 5 5 or more exactly 4 ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? False 1 True 0 False 1 True 0 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.regex(str) re.assemble(str) re.create(str) re.compile(str) re.regex(str) re.assemble(str) re.create(str) re.compile(str) ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) percentage symbol (%) ampersand (&) newline caret (^) percentage symbol (%) ampersand (&) newline ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary array tuple list dictionary array tuple list ANSWER DOWNLOAD EXAMIANS APP