Python What data type is the object below in Python? L = [1, 23, 'hello', 1] tuple dictionary array list tuple dictionary array list ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? when there is an exception only if some condition that has been specified is satisfied when there is no exception always when there is an exception only if some condition that has been specified is satisfied when there is no exception always ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 4 0 1 2 4 0 1 ANSWER DOWNLOAD EXAMIANS APP
Python Essential thing to create a window screen using tkinter python All of the mentioned create a button To define a geometry call tk() function All of the mentioned create a button To define a geometry call tk() function ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than zero one zero more than one more than zero one zero more than one ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist ANSWER DOWNLOAD EXAMIANS APP