After a bit of research I found these questions (1, 2) about variables. Similarly, I would like to know if it is possible to get the name of a list as a string in Python, for example:
for a list lst = ['a', 'b', 'c']
, a method like
get_name_of_list_as_string(lst)
should return 'lst' # String
.
Is something like that even possible in Python, and if so, how exactly?