A Python reference implementation of the CF data model
Datum.
copy
Return a deep copy.
f.copy() is equivalent to copy.deepcopy(f).
f.copy()
copy.deepcopy(f)
New in version (cfdm): 1.7.0
Datum
The deep copy.
Examples
>>> f = cfdm.core.Datum() >>> g = f.copy()