Argument.name

Returns the name of the argument.

property name: str

Query Example

from glider import *


def query():
  functions = Functions().with_arg_count(2).exec(100)
 
  for f in functions:
    for arg in f.arguments().list():
        print(f"Argument: {arg.get_variable().name}")

  return []

Output Example

Last updated