Glossary

`def`

The keyword that tells Python "I'm defining a function." Short for *define*. - **`greet`** — The function's name. Same naming rules as variables: lowercase, underscores, descriptive. - **`(name)`** — The **parameter list**. This function expects one piece of data, which it will call `name` internall

Learn More

Related Terms