dodecahedral_graph# dodecahedral_graph(create_using=None)[source]# 返回正十二面体图。 正十二面体图有20个节点和30条边。十二面体的骨架形成一个图。它是五种正多面体图之一 [1]。 它可以用LCF符号表示为: [10, 7, 4, -4, -7, 10, -4, 7, -7, 4]^2 [2]。 Parameters: create_usingNetworkX图构造函数, 可选 (默认=nx.Graph)要创建的图类型。如果是图实例,则在填充前清空。 Returns: Gnetworkx Graph包含20个节点和30条边的正十二面体图 References [1] https://en.wikipedia.org/wiki/Regular_dodecahedron#Dodecahedral_graph [2] https://mathworld.wolfram.com/DodecahedralGraph.html