Python What error occurs when you execute the following Python code snippet? apple = mango ValueError TypeError NameError SyntaxError ValueError TypeError NameError SyntaxError ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. list tuple set dictionary list tuple set dictionary 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 To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) 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) ANSWER DOWNLOAD EXAMIANS APP
Python config() in python Tkinter are used for change property of the widget place the widget configure the widget destroy the widget change property of the widget place the widget configure the widget destroy the widget ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string none of the mentioned matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string none of the mentioned ANSWER DOWNLOAD EXAMIANS APP