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 we import a tkinter in python program ? All of the mentioned import tkinter as t import tkinter from tkinter import * All of the mentioned import tkinter as t import tkinter from tkinter import * ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 63 characters 79 characters None of the mentioned 31 characters 63 characters 79 characters None of the mentioned 31 characters ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 0 2 4 1 0 2 4 ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) ampersand (&) newline percentage symbol (%) caret (^) ampersand (&) newline percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate a private variables of a class they are used to indicate global variables they slow down execution they confuse the interpreter they are used to indicate a private variables of a class they are used to indicate global variables they slow down execution they confuse the interpreter ANSWER DOWNLOAD EXAMIANS APP