Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Define Def Function Fun Define Def Function Fun ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary array list tuple dictionary array list tuple ANSWER DOWNLOAD EXAMIANS APP
Python Which one of these is used for floor division in Python? % / None of the mentioned // % / 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 when there is no exception always when there is an exception only if some condition that has been specified is satisfied when there is no exception always ANSWER DOWNLOAD EXAMIANS APP