Is there a simple way of getting the name(not contents) of every list item and converting it to string?
text0= " zero zero zero zero..."
text1= " one one one.... "
text2= " two two two...."
text3= " three three...."
text_grouped=[text0, text1, text2, text3]
for i in text_grouped:
print(i)
the above prints the contents of variables but not the actual names.
I would like the result to be: text0, text1, text2, text3