Python To insert 5 to the third position in list1, we use which Python command? 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) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? 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 None of the mentioned id returns the identity of the object ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Decomposing complex problems into simpler pieces Reducing duplication of code All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code All of the mentioned Improving clarity of the code ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? IOError AssignmentError ValueError NameError IOError AssignmentError ValueError NameError ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 0 4 2 1 0 4 2 ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? tkinter pip install tkinter install pip install python pip install tkinter tkinter pip install tkinter install pip install python pip install tkinter ANSWER DOWNLOAD EXAMIANS APP