Python What does the function re.search do? 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 such a function does not exist none of the mentioned matches a pattern at the start of the string ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Lists Class Tuples Dictionary Lists Class Tuples Dictionary ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type Array of tuples ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? “He said, ‘Yes!'” ‘3\’ ”’That’s okay”’ ‘”Once upon a time…”, she said.’ “He said, ‘Yes!'” ‘3\’ ”’That’s okay”’ ‘”Once upon a time…”, she said.’ ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? 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 they are used to indicate a private variables of a class they are used to indicate global variables ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Less restriction on the type values that can be passed to a given method Makes the program code smaller More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Less restriction on the type values that can be passed to a given method Makes the program code smaller ANSWER DOWNLOAD EXAMIANS APP