Python Correct way to draw a line in canvas tkinter canvas.create_line() line() create_line(canvas) None of the mentioned canvas.create_line() line() create_line(canvas) None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist 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 Which of these about a dictionary is false? Dictionaries aren’t ordered The values of a dictionary can be accessed using keys Dictionaries are mutable The keys of a dictionary can be accessed using values Dictionaries aren’t ordered The values of a dictionary can be accessed using keys Dictionaries are mutable The keys of a dictionary can be accessed using values ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ percentage symbol (%) newline ampersand (&) caret (^) percentage symbol (%) newline ampersand (&) caret (^) ANSWER DOWNLOAD EXAMIANS APP
Python In Python GUI programming, the method that leaves an impression of a turtle shape at the current location All of the mentioned shape() stamp() position() All of the mentioned shape() stamp() position() ANSWER DOWNLOAD EXAMIANS APP