From 9ed361d410220442f4f604aeb7d22ad7dab9c650 Mon Sep 17 00:00:00 2001 From: Jose Velez <146593007+Jose-Velez-Borbon@users.noreply.github.com> Date: Tue, 7 Nov 2023 08:17:45 -0500 Subject: [PATCH] Fix typo in 5-print-statement-formatting.md Fixes typo --- data/part-4/5-print-statement-formatting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-4/5-print-statement-formatting.md b/data/part-4/5-print-statement-formatting.md index 07d602b96..a44431085 100644 --- a/data/part-4/5-print-statement-formatting.md +++ b/data/part-4/5-print-statement-formatting.md @@ -31,7 +31,7 @@ The second method is considering each segment of the argument as a separate argu print("Hi", name, "your age is", age, "years" ) ``` -This code produces the exact same result as the previous version. The `print` command normally adds a space character between each argument.The advantage here is that the segments can be of different types, so there is no need to convert anything into a string. +This code produces the exact same result as the previous version. The `print` command normally adds a space character between each argument. The advantage here is that the segments can be of different types, so there is no need to convert anything into a string. If you want to remove the automatically added spaces, you can add a special named argument `sep`: