Python How we import a tkinter in python program ? import tkinter All of the mentioned import tkinter as t from tkinter import * import tkinter All of the mentioned import tkinter as t from tkinter import * ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.X re.I re.U re.A re.X re.I re.U re.A ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when no exception occurs when an exception occurs Always when an exception occurs in to except block when no exception occurs when an exception occurs Always when an exception occurs in to except block ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? All of the mentioned Reducing duplication of code Decomposing complex problems into simpler pieces Improving clarity of the code All of the mentioned Reducing duplication of code Decomposing complex problems into simpler pieces Improving clarity of the code ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? 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 none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? “He said, ‘Yes!'” ”’That’s okay”’ ‘”Once upon a time…”, she said.’ ‘3\’ “He said, ‘Yes!'” ”’That’s okay”’ ‘”Once upon a time…”, she said.’ ‘3\’ ANSWER DOWNLOAD EXAMIANS APP