from glider import*defquery(): functions =Functions().exec(100) expressions = []for function in functions:for exp_instruction in function.expression_instructions().exec():# For each function, return the expressions expressions.append(exp_instruction)return expressions