Python What does the function re.search do? 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 matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? ”’That’s okay”’ ‘3\’ ‘”Once upon a time…”, she said.’ “He said, ‘Yes!'” ”’That’s okay”’ ‘3\’ ‘”Once upon a time…”, she said.’ “He said, ‘Yes!'” ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter import tkinter as t from tkinter import * All of the mentioned import tkinter import tkinter as t from tkinter import * All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) newline ampersand (&) percentage symbol (%) caret (^) newline ampersand (&) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) canvas.create_line() line() None of the mentioned create_line(canvas) canvas.create_line() line() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango NameError ValueError TypeError SyntaxError NameError ValueError TypeError SyntaxError ANSWER DOWNLOAD EXAMIANS APP