Now we can create a greet() method for our class. It'll only have self as a parameter and will print the class's phrase variable.
greet()
self
phrase
Make sure to pick print followed by ( and then self, ., phrase, ).
print
(
.
)