Structs fields cannot be reassigned once the struct is created. Two structs are equal if they have the same fields and if corresponding field values are equal.
Members
struct
struct struct(**kwargs)
s = struct(x = 2, y = 3) return s.x + getattr(s, "y") # returns 5
Parameters
Parameter | Description |
---|---|
kwargs
|
default is {} Dictionary of arguments. |