Python Correct way to draw a line in canvas tkinter canvas.create_line() None of the mentioned create_line(canvas) line() canvas.create_line() None of the mentioned create_line(canvas) line() ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? None of the mentioned 63 characters 79 characters 31 characters None of the mentioned 63 characters 79 characters 31 characters ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Function Def Fun Define Function Def Fun Define ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] list array dictionary tuple list array dictionary tuple ANSWER DOWNLOAD EXAMIANS APP
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(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than zero zero more than one one more than zero zero more than one one ANSWER DOWNLOAD EXAMIANS APP