diff --git a/01.Introduction-to-programming.md b/01.Introduction-to-programming.md index 4d95872..7589671 100644 --- a/01.Introduction-to-programming.md +++ b/01.Introduction-to-programming.md @@ -156,7 +156,7 @@ The `print()` command allows you to specify multiple #### Example ```python -print("I", "will" "become", "a" "software", "engineer") +print("I", "will", "become", "a", "software", "engineer") ``` #### Output