Python Which of the following functions results in case insensitive matching? re.U re.X re.A re.I re.U re.X re.A re.I ANSWER DOWNLOAD EXAMIANS APP
Python Which of following Python Network/Internet modules supports HTTP protocol? xmlrpclib All of the mentioned urllib httplib xmlrpclib All of the mentioned urllib httplib ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. list dictionary set tuple list dictionary set tuple ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when an exception occurs when no exception occurs Always when an exception occurs in to except block when an exception occurs when no exception occurs Always when an exception occurs in to except block ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? none of the mentioned regex re pyregex none of the mentioned regex re pyregex ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP