Write the following code in Python.
Use turtle in Python.
But please take a graph which is more difficult than a simple graph.
Perform Breadth First Traversal using the graph built in the previous question.
The Breadth First Traversal Algorithm should take the graph as input and produce the order of the nodes traversed.
At each time step, the GUI should highlight the edges through which the BFS progresses on the screen.
Repeat the same for Depth First traversal.