Gives access to an object's attribute.
object.attribute
- object
- Any object.
- attribute
- The attribute to be accessed or created.
#TODO
#TODO
Note that Python is a dynamic language and attributes can be accessed and created explicitly.
>>> "ABCD".islower()
False>>> # this example adds a new attribute to a class instance
>>> class Example:
... pass
...
>>> e = Example()
>>> e.dummy = 10#TODO