Instruction.get_value()
Returns the Instruction's Value object.
get_value() -> Value | NoneObject
Query Example
from glider import *
def query():
instructions = Instructions().exec(2,1)
results = []
for inst in instructions:
print(inst.get_value())
return instructionsExample Output

Last updated