Type Checking Parameters - Computer Science

When you de ne a function in Python, you simply write def (short for de ne), followed by the name of the function, with all words lowercase and separated by underscores, then the parameters in parentheses, and lastly a colon. You do not need to specify the type of your parameters in Python! Next, document your function with a block comment! ................
................