Python An exception is ____________ a module a special function an object a standard module a module a special function an object a standard module ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addLast(5) list1.add(5) list1.append(5) list1.addEnd(5) list1.addLast(5) list1.add(5) list1.append(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.create(str) re.regex(str) re.assemble(str) re.compile(str) re.create(str) re.regex(str) re.assemble(str) re.compile(str) ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter line() None of the mentioned canvas.create_line() create_line(canvas) line() None of the mentioned canvas.create_line() create_line(canvas) ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. 5 or more exactly 5 exactly 4 5 or less 5 or more exactly 5 exactly 4 5 or less 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.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP