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(2, 5) list1.insert(3, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of the following cannot be a variable? on It __init__ in on It __init__ in ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Frame All of the mentioned Window Label Frame All of the mentioned Window Label ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? String int bool str String int bool str ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Invalid type Tuples of lists Array of tuples List of tuples Invalid type Tuples of lists Array of tuples ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Class Lists Dictionary Tuples Class Lists Dictionary Tuples ANSWER DOWNLOAD EXAMIANS APP