...the dot operator. For example, the following code calls the `say_hello()` method of the `person` object:
```python
person.say_hello()
```
##Methods
Methods are functions that are defined inside a class. Methods can be used to perform operations on objects.
For example, the following...