From 4ada508624254ad5779e7b3568d4ad01d95bdd6d Mon Sep 17 00:00:00 2001 From: Amukelani <111043334+Amukelani5587@users.noreply.github.com> Date: Fri, 10 May 2024 00:48:50 +0200 Subject: [PATCH] 6-concat.py --- 6-concat.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/6-concat.py b/6-concat.py index 3d1e66b..3a65554 100644 --- a/6-concat.py +++ b/6-concat.py @@ -1,5 +1,4 @@ #!/usr/bin/python3 str1 = "Holberton" str2 = "School" -# YOUR CODE GOES HERE. PLEASE REMOVE THIS LINE -print(f"Welcome to {str1}!") +print(f"Welcome to {str1} {str2}!")