I want to draw Digraph of graphviz by using a nested tuples:
nested = (("2","3"),("5", "6"))
How to process nested to get the next result?
from graphviz import Digraph
edges = [("1","2"),("1","3"),("4","5"),("4","6"), ("0", "1"), ("0", "4")]
graph = Digraph()
graph.edges(edges)
graph
