Python Which module in Python supports regular expressions? re pyregex regex none of the mentioned re pyregex regex none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? All of the mentioned Every object doesn’t have a unique id id returns the identity of the object None of the mentioned All of the mentioned Every object doesn’t have a unique id id returns the identity of the object None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? when there is an exception only if some condition that has been specified is satisfied always when there is no exception when there is an exception only if some condition that has been specified is satisfied always when there is no exception ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. list set dictionary tuple list set dictionary tuple ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller ANSWER DOWNLOAD EXAMIANS APP