From d2faf976b73bf39afed9b758ea30889925051530 Mon Sep 17 00:00:00 2001 From: jesusleejy Date: Sat, 6 Jun 2020 18:16:57 +0900 Subject: [PATCH] [UPDATE fixed indent of pfb-4 --- .../04 - String variables/format_strings.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-for-beginners/04 - String variables/format_strings.py b/python-for-beginners/04 - String variables/format_strings.py index 6b79588..c892cff 100644 --- a/python-for-beginners/04 - String variables/format_strings.py +++ b/python-for-beginners/04 - String variables/format_strings.py @@ -4,5 +4,8 @@ # the capitalize function will return the string with # the first letter uppercase and the rest of the word lowercase -print ('Hello ' + first_name.capitalize() + ' ' \ - + last_name.capitalize()) +print ( + 'Hello ' + first_name.capitalize() + + ' ' + + last_name.capitalize() +)