Glossary

Docstring conventions:

First line: one-sentence summary of what the function does - Args section: each parameter, its type, what it represents - Returns section: what the function returns and its type - Example (optional but very helpful for calculation functions) - Raises section if the function intentionally raises exce

Learn More

Related Terms