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 instructions

Example Output

Last updated