Object

Applies to: general, python, cpp

An object bundles data with behavior. It is an instance of a class, with fields or attributes and methods that operate on them.

name = "robot"
name.upper()

See also: class, attribute, method