I am working with networkx
, how to do change the output of the cell showing the whole list from this
EdgeDataView([('0', '1', {'Weight': 4}), ('0', '2', {'Weight': 3}), ('0', '3', {'Weight': 2}), ('0', '5', {'Weight': 6}), ('1', '3', {'Weight': 2}), ('1', '6', {'Weight': 5}), ('3', '4', {'Weight': 3}), ('5', '4', {'Weight': 1}), ('5', '8', {'Weight': 6}), ('4', '7', {'Weight': 2}), ('8', '9', {'Weight': 1})])
to this ( each element of a list are separated by newline )
[('0', '1', {'Weight': 4}),
('0', '2', {'Weight': 3}),
('0', '3', {'Weight': 2}),
('0', '5', {'Weight': 6}),
('1', '3', {'Weight': 2}),
('1', '6', {'Weight': 5}),
('3', '4', {'Weight': 3}),
('5', '4', {'Weight': 1}),
('5', '8', {'Weight': 6}),
('4', '7', {'Weight': 2}),
('8', '9', {'Weight': 1})]