Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ newline percentage symbol (%) ampersand (&) caret (^) newline percentage symbol (%) ampersand (&) caret (^) ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary tuple array list dictionary tuple array list ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? such a function does not exist none of the mentioned matches a pattern at the start of the string matches a pattern at any position in the string such a function does not exist none of the mentioned matches a pattern at the start of the string matches a pattern at any position in the string ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Decomposing complex problems into simpler pieces Improving clarity of the code Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces Improving clarity of the code Reducing duplication of code All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * import tkinter import tkinter as t All of the mentioned from tkinter import * import tkinter import tkinter as t All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Else finally except Assert Else finally except Assert ANSWER DOWNLOAD EXAMIANS APP