Python To insert 5 to the third position in list1, we use which Python command? 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) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Invalid type List of tuples Array of tuples Tuples of lists Invalid type List of tuples Array of tuples Tuples of lists ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? None of the mentioned id returns the identity of the object Every object doesn’t have a unique id All of the mentioned None of the mentioned id returns the identity of the object Every object doesn’t have a unique id All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at the start of the string none of the mentioned such a function does not exist matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned such a function does not exist matches a pattern at any position in the string ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Window Label Frame All of the mentioned Window Label Frame All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ UPPER CASE Capitalized None of the mentioned lower case UPPER CASE Capitalized None of the mentioned lower case ANSWER DOWNLOAD EXAMIANS APP