1class SimpleClass:
2 """Class docstrings go here."""
3
4 def say_hello(self, name: str):
5 """Class method docstrings go here."""
6
7 print(f'Hello {name}')
8
1def say_hello(name):
2 print(f"Hello {name}, is it me you're looking for?")
3
4say_hello.__doc__ = "A simple function that says hello... Richie style"
5