Variable.canonical_name

Returns the canonical name of the variable.

property canonical_name: str

Query Example

from glider import *

def query():

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

  print(state_variables[0].canonical_name)

  return state_variables

Output Example

Last updated