For C-like structures in Python, you can use a named tuple, which was added to the collections module in the standard library in Python 2.6.
from collections import namedtuple
MyStruct = namedtuple("MyStruct", "field1 field2 field3")
The named tuple can be used like this:
m = MyStruct("foo", "bar", "baz")