Yes, you can do the same in DOLFIN.
from dolfin import *
mesh = UnitSquareMesh(10, 10)
for cell in cells(mesh):
print(cell.volume())
as shown in:
Yes, you can do the same in DOLFIN.
from dolfin import *
mesh = UnitSquareMesh(10, 10)
for cell in cells(mesh):
print(cell.volume())
as shown in: