Attribute

Applies to: general, python, cpp

An attribute is named data stored on an object. In C++ the same idea is often called a member or field.

robot.x = 1.5
robot.heading = 0.0

See also: object, class