This post follows my previous question from here: Split list into different variables
I realized that I would have multiple chunks of elements in a list and these may not always be restricted to 3. For example, I could have:
[('love', 'yes', 'no'), ('valentine', 'no', 'yes'), ('day', 'yes','yes'),
('house', 'yes','no'), ('car', 'yes','yes')]
[('love', 'yes', 'no'), ('valentine', 'no', 'yes'), ('day', 'yes','yes'),
('house', 'yes','no'), ('car', 'yes','yes'), ('balloon', 'no','no'),
('roses', 'yes','yes')]
var1, var2, var3 = listobj
works fine for only three of these element chunks. But for more, in general, how would I store all these chunks of elements into different variables?