docstring for function.
(x: int, y: int)
| 2 | "docstring for module." |
| 3 | |
| 4 | def multiply(x: int, y: int) -> int: |
| 5 | "docstring for function." |
| 6 | # one line comment |
| 7 | return x * y |
| 8 | """multiline comment explaining |
| 9 | that type hints using annotations are not |
| 10 | enforced but can be used by third party tools |
| 11 | such as type checkers, IDEs, linters, etc. |
| 12 | """ |
| 13 | |
| 14 | |
| 15 | if __name__ == "__main__": |