From f640c9ea8a9e56f669d0e3f1c2ce55bfa2084bdb Mon Sep 17 00:00:00 2001 From: Kujo-f <135007500+Kujo-f@users.noreply.github.com> Date: Mon, 29 Jan 2024 00:22:29 +0300 Subject: [PATCH] Update 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..4568422 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} !")