Python Which of the following creates a pattern object? re.compile(str) re.regex(str) re.create(str) re.assemble(str) re.compile(str) re.regex(str) re.create(str) re.assemble(str) ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? no None of the mentioned yes machine dependent no None of the mentioned yes machine dependent ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ newline caret (^) percentage symbol (%) ampersand (&) newline caret (^) percentage symbol (%) ampersand (&) ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t All of the mentioned import tkinter from tkinter import * import tkinter as t All of the mentioned import tkinter from tkinter import * ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? 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 none of the mentioned matches a pattern at any position in the string ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than one one more than zero zero more than one one more than zero zero ANSWER DOWNLOAD EXAMIANS APP