diff --git a/6-concat.py b/6-concat.py index 3d1e66b..c06e7bc 100644 --- a/6-concat.py +++ b/6-concat.py @@ -3,3 +3,5 @@ str2 = "School" # YOUR CODE GOES HERE. PLEASE REMOVE THIS LINE print(f"Welcome to {str1}!") +print(f"{str2} is the best!") +print(f"Welcome to {str1} {str2}!")