Python Which of the following functions results in case insensitive matching? re.I re.A re.X re.U re.I re.A re.X re.U ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ percentage symbol (%) newline ampersand (&) caret (^) percentage symbol (%) newline ampersand (&) caret (^) ANSWER DOWNLOAD EXAMIANS APP
Python In Python GUI programming, the method that leaves an impression of a turtle shape at the current location All of the mentioned position() shape() stamp() All of the mentioned position() shape() stamp() ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? 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 they are used to indicate a private variables of a class they are used to indicate global variables they slow down execution ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists Invalid type List of tuples Array of tuples Tuples of lists Invalid type List of tuples Array of tuples ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? 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 when no exception occurs when an exception occurs ANSWER DOWNLOAD EXAMIANS APP