Returns the instruction's i-th component.
get_component(i : int) → Value | NoneObject
get_component(
i : int
) →
Value
|
NoneObject
from glider import * def query(): instructions = Instructions().exec(1,1) print(instructions[0].get_component(0).expression) return instructions
Last updated 29 days ago