Python The expression a{5} will match _____________ characters with the previous regular expression. 5 or more exactly 5 exactly 4 5 or less 5 or more exactly 5 exactly 4 5 or less ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of the following cannot be a variable? on in __init__ It on in __init__ It 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? All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 1 0 True False 1 0 True False ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? String int bool str String int bool str ANSWER DOWNLOAD EXAMIANS APP