Is there a way i can take variable name inside a list to string?
for example:
abc, def, ghi, jkl = (1,2,3,4)
arr = [abc, def, ghi, jkl]
i need to create a list for every variable name, so i can get:
arr_name = ['abc', 'def', 'ghi', 'jkl']
i need to do this so i don't have to type every variable name for labels in pie plot. Or is creating dict
the best way for this problem?
Thanks in advance.