Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 2 4 1 0 2 4 1 ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Tuples Class Dictionary Lists Tuples Class Dictionary Lists ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? none of the mentioned matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string none of the mentioned matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? True 0 False 1 True 0 False 1 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? AssignmentError NameError IOError ValueError AssignmentError NameError IOError ValueError ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ newline caret (^) ampersand (&) percentage symbol (%) newline caret (^) ampersand (&) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP