I have a dataframe like this:
top1 top2 top3
0 0 13 20
1 1 14 23
2 2 11 25
3 3 13 20
4 4 10 21
5 5 19 13
I want to generate to generate tuples like that: [("0", "13"), ("0", "20"), ("1", "14), ("2", "11"), ("2", "25"), ....].
How can we do that if possible? And if I want to do the same for a some given rows (not all the rows)?