Variable.source_code()

Returns source code of variable

source_code() → str

Query Example

from glider import *

def query():

  state_variables = (
    StateVariables()
    .exec(5)
  )

  print(state_variables[0].source_code())

  return state_variables

Output Example

Last updated