Instance

Applies to: general

An instance is a concrete object created from a class. The class is the blueprint; the instance is the thing in memory.

r1 = Robot()
r2 = Robot()

See also: class, object