Questions & Answers(Frequently asked questions)Questions & Answers › Tag: PythonFilter:AllOpenResolvedClosedUnansweredSort byViewsAnswersVotesWhat is the output of the following code? def outer(x, y): def inner1(): return x+y def inner2(z): return inner1() + z return inner2 f = outer(10, 25) print(f(15))AnsweredAdam asked 3 years ago • Programming Language8538 views1 answers-1 votesWhat is the output of the following code? def multipliers(): return [lambda x : i * x for i in range(4)] print([m(2) for m in multipliers()])AnsweredAdam asked 3 years ago • Programming Language13751 views1 answers0 voteswhich-of-the-following-method-is-used-to-fetch-all-the-rows-of-a-query-resultAnsweredAdam asked 3 years ago • Programming Language2802 views1 answers0 votesWhat does the search method of re module do?AnsweredAdam asked 3 years ago • Programming Language4406 views1 answers0 votesIn a match found by a defined pattern, how to group various portions of a match?AnsweredAdam asked 3 years ago • Programming Language7603 views1 answers-1 votesWhich of the following methods of a match object mo is used to view the grouped portions of match in the form of a tuple?AnsweredAdam asked 3 years ago • Programming Language12400 views1 answers0 votes