From 285cf763a3cd20a752931c738a5c4e5252d164d1 Mon Sep 17 00:00:00 2001 From: Daniel Phiri Date: Sat, 28 Oct 2017 16:05:57 +0530 Subject: [PATCH] Updated variable names Fixing issue #38 --- challenges/1.3.Input/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/challenges/1.3.Input/main.py b/challenges/1.3.Input/main.py index 3e53486..79eb58c 100644 --- a/challenges/1.3.Input/main.py +++ b/challenges/1.3.Input/main.py @@ -1,12 +1,12 @@ ### Modify the code below ### #Ask the user for their name! -Name = '' +name = '' #Ask the user for their age! -Age = '' +age = '' -print(Name) -print(Age) +print(name) +print(age) ### Modify the code above ###