From a27bf2ebaeefd7669ff2d01aecc8eace682e4f50 Mon Sep 17 00:00:00 2001 From: justTravis <49211262+justTravis@users.noreply.github.com> Date: Sat, 22 Jun 2024 16:16:11 +0000 Subject: [PATCH] fixed missing commas --- 01.Introduction-to-programming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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