Python What does the function re.search do? such a function does not exist none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? except Assert finally Else except Assert finally Else 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 In order to store values in terms of key and value we use what Python core data type. tuple list set dictionary tuple list set dictionary ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) 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