So far I have written the following code. I am super new to python
class polygon(object):
def__init__(self, edge, face, vertex='')
self.edge = edge
self.face = face
self.vertex = vertex
self.tetrahedron = tetrahedron
a = polygon('6', '4', '4', tetrahedron)
print a.edge, a.face, a.vertex, a.tetrahedron
print a
Also How can find the mesh module in Python? I am using spyder and I cant find it in the library. Please help if anyone can.
bpy.context.scene.statistics(bpy.context.view_layer)but beware, this is mode dependent! Old script which ensures object mode: https://github.com/CoDEmanX/blend_stats/blob/master/blend_stats.py) – CodeManX Feb 25 '20 at 15:30