I would like to be able to get the name of a variable as a string but I don\'t know if Python has that much introspection capabilities. Something like:
>&
should get list then return
def get_var_name(**kwargs): """get variable name get_var_name(var = var) Returns: [str] -- var name """ return list(kwargs.keys())[0]