diff --git a/Python/03. Strings/003. What's Your Name.py b/Python/03. Strings/003. What's Your Name.py index 3d55974..8b02360 100644 --- a/Python/03. Strings/003. What's Your Name.py +++ b/Python/03. Strings/003. What's Your Name.py @@ -3,4 +3,4 @@ def print_full_name(first_name, last_name): - print("Hello {} {}! You just delved into python.".format(first_name, last_name)) + print(f"Hello {first_name} {last_name}! You just delved into python.")