I am using python to draw an edge graph. Right now my data look like this
I have two columns of integer. Now, I want to make them into a (x,y) object to use as a node. For example, row 2 has two values 38 and 956; I want to create a new object from it called node that will be a two-tuple node like (38,956). My aim is to use it with the A* algorithm.
So, how do I turn two integers into a node of two values?