Skip to content

Commit 13406e0

Browse files
committed
Add missing language label
1 parent 0359617 commit 13406e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/content/02-introduction-to-python/060-functions/30-function-arguments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ There are a few important things to know about calling functions with arguments.
9595
Arguments without default values are **required** by Python. Otherwise your function wouldn't know what to do! If you don't pass in all the required arguments, you'll get a `TypeError`.
9696

9797
In the REPL:
98-
```
98+
```python
9999
>>> def say_greeting(name, greeting):
100100
... print(f"{greeting}, {name}.")
101101
...

0 commit comments

Comments
 (0)