Graphadd_vertexOn this pageGraph.add_vertexAdd a vertex into the graphUsageadd_vertex(node_id:int)Parameters: node_id : int Unique identifier of the vertice Examplefrom jellybeans.structures import Graphg = Graph()g.add_vertex(1)g.add_vertex(5)g.add_vertex(11)print(g.list_vertices()) # [1, 5, 11]