graph representation of this code

Please write out a graph that represents the code below. This code creates a graph using Dictionary (denoted by { }).

graph = { “a” : [“c”],

Save your time - order a paper!

Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines

Order Paper Now

          “b” : [“c”, “e”],

          “c” : [“a”, “b”, “d”, “e”],

          “d” : [“c”],

          “e” : [“c”, “b”],

          “f” : []

        }

**Note: Do not send this in a program!  I want to see a graph representation of this code only