Python To insert 5 to the third position in list1, we use which Python command? 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) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango ValueError NameError TypeError SyntaxError ValueError NameError TypeError SyntaxError ANSWER DOWNLOAD EXAMIANS APP
Python Essential thing to create a window screen using tkinter python create a button All of the mentioned To define a geometry call tk() function create a button All of the mentioned To define a geometry call tk() function ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? * + All of the mentioned – * + All of the mentioned – ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 1 0 False True 1 0 False True ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? str int bool String str int bool String ANSWER DOWNLOAD EXAMIANS APP