From 9a207b34fe5877a8c93f870d08206e9c437cc973 Mon Sep 17 00:00:00 2001 From: HACKERmpython <112483403+HACKERmpython@users.noreply.github.com> Date: Sat, 3 Sep 2022 19:31:30 +0530 Subject: [PATCH] Update Taking input from user.py --- Taking input from user.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Taking input from user.py b/Taking input from user.py index 3c5ca67..2c90c66 100644 --- a/Taking input from user.py +++ b/Taking input from user.py @@ -1,5 +1,3 @@ -print("What is your name") -name = input() -print("Where are you from") -place = input() -print("Hi",name+" from",place+" have a good day.") \ No newline at end of file +name = input(print("What is your name")).strip().Title() +place = input(print("Where are you from")).strip().Title() +print("Hi",name+" from",place+" have a good day.")