From a91ab6dd5a8f83a00a08da525e87ea50d9048d12 Mon Sep 17 00:00:00 2001 From: Rishav Das <61372472+r1shavd@users.noreply.github.com> Date: Sun, 24 Dec 2023 13:14:12 +0530 Subject: [PATCH] Updated 003. What's Your Name.py with f-string formatting --- Python/03. Strings/003. What's Your Name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.")